Home
last modified time | relevance | path

Searched refs:meth (Results 1 – 7 of 7) sorted by relevance

/openbmc/phosphor-fan-presence/control/templates/
H A Ddefs.mako37 <%def name="genMethod(meth)" buffered="True">
38 %if ('type' in meth['mparams']) and \
39 (meth['mparams']['type'] is not None):
40 ${meth['method']}<${meth['mparams']['type']}>(
42 ${meth['method']}(
44 %for spk in meth['mparams']['params']:
45 ${meth['mparams'][spk]},
47 ${genParams(par=meth)}\
133 ${indent(genMethod(meth=i), 3)}\
H A Dfan_zone_defs.mako.cpp186 ${indent(genMethod(meth=i), 3)}\
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Ddecorators.py46 def get_class_that_defined_method(meth): argument
47 if inspect.ismethod(meth):
48 for cls in inspect.getmro(meth.__self__.__class__):
49 if cls.__dict__.get(meth.__name__) is meth:
51 meth = meth.__func__ # fallback to __qualname__ parsing
52 if inspect.isfunction(meth):
53 cls = getattr(inspect.getmodule(meth),
54 meth.__qualname__.split('.<locals>', 1)[0].rsplit('.', 1)[0])
/openbmc/linux/drivers/net/ethernet/sgi/
H A DMakefile6 obj-$(CONFIG_SGI_O2MACE_ETH) += meth.o
/openbmc/openbmc/poky/bitbake/lib/
H A Dpyinotify.py621 meth = getattr(self, 'process_' + maskname, None)
622 if meth is not None:
623 return meth(event)
625 meth = getattr(self, 'process_IN_' + maskname.split('_')[1], None)
626 if meth is not None:
627 return meth(event)
/openbmc/linux/drivers/platform/x86/
H A Dasus-laptop.c1255 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF; in asus_gps_switch() local
1257 if (write_acpi_int(asus->handle, meth, 0x02)) in asus_gps_switch()
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-h5py/
H A D0001-Fix-Cython-3-compatibility.patch184 * :meth:`~.Group.create_dataset` and :meth:`~.Group.require_dataset` now accept