Home
last modified time | relevance | path

Searched full:inspect (Results 1 – 25 of 221) sorted by relevance

123456789

/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/runtime/cases/
H A Dgstreamer.py14 status, output = self.target.run('gst-inspect-1.0')
15 self.assertEqual(status, 0, 'gst-inspect-1.0 does not appear to be running.')
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/State/Leak/
H A DDetectorGroup.events.yaml14 resolution: Inspect the detectors in the group.
27 resolution: Inspect the detectors in the group.
/openbmc/openbmc/poky/bitbake/lib/bb/server/
H A Dxmlrpcserver.py12 import inspect
80 methodlist = inspect.getmembers(context, inspect.ismethod)
/openbmc/openbmc/poky/meta/lib/oeqa/core/utils/
H A Dtest.py8 import inspect
83 return inspect.getsourcefile(test_case.__class__)
/openbmc/qemu/scripts/
H A Dsimpletrace.py14 import inspect
83 frameinfo = inspect.getframeinfo(inspect.currentframe())
178 # Return early to avoid costly call to inspect.getfullargspec
182 fn_argcount = len(inspect.getfullargspec(fn)[0]) - 1
/openbmc/openbmc-test-automation/lib/
H A Dgen_print.py10 import inspect
144 Work around the inspect.stack() getcwd() failure by making "/tmp" the current working directory.
146 …NOTES: If the current working directory has been deleted, inspect.stack() will fail with "OSError:…
265 ) = inspect.stack()[stack_frame_ix]
273 + str(len(inspect.stack()))
290 module = inspect.getmodule(frame)
292 …# Though one would expect inspect.getsourcelines(frame) to get all module source lines if the fram…
293 …# "<module>", it doesn't do that. Therefore, for this special case, do inspect.getsourcelines(mod…
295 source_lines, source_line_num = inspect.getsourcelines(module)
298 source_lines, source_line_num = inspect.getsourcelines(frame)
[all …]
/openbmc/linux/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/
H A Disp.c104 /* Inspect readiness of an ISP indexed by ID */
111 /* Inspect sleeping of an ISP indexed by ID */
/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/bb/
H A Dprogress.py12 import inspect
214 self._callers.append(inspect.getouterframes(inspect.currentframe())[1])
/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/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/qemu/docs/system/
H A Dmonitor.rst15 - Inspect the VM state without an external debugger.
/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/linux/include/drm/
H A Ddrm_modeset_helper_vtables.h173 * Atomic drivers which need to inspect and adjust more state should
327 * This function is also allowed to inspect any other object's state and
588 * Atomic drivers which need to inspect and adjust more state should
656 * If the driver uses the atomic modeset helpers and needs to inspect
679 * be used instead of @mode_set if the driver needs to inspect the
897 * held. Because of this it's safe to inspect &drm_connector->state.
961 * held. Because of this it's safe to inspect &drm_connector->state.
1024 * atomic update. The driver is not allowed to change or inspect
1026 * inspect dynamic configuration state should instead use
1079 * This function is also allowed to inspect any other object's state and
[all …]
H A Ddrm_vma_manager.h157 * @node: Node to inspect
176 * @node: Node to inspect
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Doetest.py14 import inspect
121 frameinfo = inspect.stack()[pos]
122 modname = inspect.getmodulename(frameinfo[1])
123 #modname = inspect.getmodule(frameinfo[0]).__name__
/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/meta-openembedded/meta-oe/recipes-kernel/bpftool/
H A Dbpftool.bb1 SUMMARY = "Inspect and manipulate eBPF programs and maps"
/openbmc/qemu/tests/tcg/multiarch/gdbstub/
H A Dsha1.py36 # Check step and inspect values. We do a double next after the
/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/linux/Documentation/input/
H A Dnotifier.rst23 That permits one to inspect the resulting LEDs for instance.
/openbmc/openbmc-tools/
H A DREADME.md11 - _Always_ inspect what you will be executing

123456789