Home
last modified time | relevance | path

Searched refs:inspect (Results 1 – 25 of 82) sorted by relevance

1234

/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Ddecorators.py35 import inspect
47 if inspect.ismethod(meth):
48 for cls in inspect.getmro(meth.__self__.__class__):
52 if inspect.isfunction(meth):
53 cls = getattr(inspect.getmodule(meth),
/openbmc/openbmc/poky/meta/lib/oe/
H A Dmaketype.py13 import inspect
62 sig = inspect.signature(obj)
64 …defaults = list(s for s in sig.parameters.keys() if sig.parameters[s].default != inspect.Parameter…
/openbmc/openbmc/poky/meta/lib/oeqa/core/utils/
H A Dtest.py8 import inspect
83 return inspect.getsourcefile(test_case.__class__)
/openbmc/openbmc-test-automation/lib/
H A Dgen_print.py10 import inspect
265 ) = inspect.stack()[stack_frame_ix]
273 + str(len(inspect.stack()))
290 module = inspect.getmodule(frame)
295 source_lines, source_line_num = inspect.getsourcelines(module)
298 source_lines, source_line_num = inspect.getsourcelines(frame)
320 all_functions = inspect.getmembers(module, inspect.isfunction)
1378 (args, varargs, keywords, locals) = inspect.getargvalues(
1451 current_stack = inspect.stack()
1503 stack_frame = inspect.stack()[stack_frame_ix]
[all …]
H A Dgen_misc.py9 import inspect
637 return [str(stack_frame[3]) for stack_frame in inspect.stack()]
724 callers_stack_frame = inspect.stack()[1]
H A Dgen_cmd.py8 import inspect
548 (args, varargs, keywords, locals) = inspect.getargvalues(
549 inspect.stack()[stack_frame_ix][0]
/openbmc/openbmc/poky/bitbake/lib/bb/server/
H A Dxmlrpcserver.py12 import inspect
80 methodlist = inspect.getmembers(context, inspect.ismethod)
/openbmc/qemu/scripts/
H A Dsimpletrace.py14 import inspect
83 frameinfo = inspect.getframeinfo(inspect.currentframe())
182 fn_argcount = len(inspect.getfullargspec(fn)[0]) - 1
/openbmc/u-boot/test/py/
H A Du_boot_utils.py7 import inspect
270 frame = inspect.stack()[1]
271 module = inspect.getmodule(frame[0])
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/views/
H A Dtest_views.py25 import inspect
400 tables = inspect.getmembers(toastergui.tables, inspect.isclass)
401 tables.extend(inspect.getmembers(toastergui.buildtables,
402 inspect.isclass))
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dprogress.py12 import inspect
214 self._callers.append(inspect.getouterframes(inspect.currentframe())[1])
H A Dcodeparser.py30 import inspect
75 targetfn = inspect.getsourcefile(functions[f])
80 lines, lineno = inspect.getsourcelines(functions[f])
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-icecream_2.1.4.bb1 SUMMARY = "Never use print() to debug again; inspect variables, expressions, and program execution …
/openbmc/openbmc/meta-security/recipes-core/images/
H A Ddm-verity-image-initramfs.bb23 # Can we somehow inspect reverse dependencies to avoid these variables?
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/memtool/
H A Dmemtool_2018.03.0.bb7 to inspect and modify registers from the command line. memtool can also operate on plain files, \
/openbmc/openbmc/poky/meta/recipes-devtools/ruby/ruby/
H A D0005-Mark-Gemspec-reproducible-change-fixing-784225-too.patch20 "invalid date format in specification: #{date.inspect}")
/openbmc/openbmc/poky/meta/lib/oeqa/core/
H A Dloader.py11 import inspect
30 _failed_test_args = inspect.getfullargspec(unittest.loader._make_failed_test).args
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Doetest.py14 import inspect
121 frameinfo = inspect.stack()[pos]
122 modname = inspect.getmodulename(frameinfo[1])
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ipvsadm/
H A Dipvsadm_1.31.bb3 DESCRIPTION = "Ipvsadm is used to set up, maintain or inspect the virtual server \
/openbmc/linux/Documentation/input/
H A Dnotifier.rst23 That permits one to inspect the resulting LEDs for instance.
/openbmc/linux/Documentation/input/devices/
H A Dcs461x.rst39 inspect cs461x: prefixed messages to determine possible card detection
/openbmc/openbmc-tools/
H A DREADME.md11 - _Always_ inspect what you will be executing
/openbmc/openbmc-tools/dbus-pcap/
H A DREADME.md54 While [Wireshark](https://www.wireshark.org/) has the ability to inspect D-Bus
/openbmc/qemu/qapi/
H A Dblock-export.json105 # the metadata context name "qemu:dirty-bitmap:BITMAP" to inspect
111 # metadata context name "qemu:allocation-depth" to inspect
228 # metadata context name "qemu:dirty-bitmap:BITMAP" to inspect the
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dsqlalchemy.py31 inspect,
129 return inspect(conn).has_table(name)

1234