Searched refs:meth (Results 1 – 7 of 7) sorted by relevance
/openbmc/phosphor-fan-presence/control/templates/ |
H A D | defs.mako | 37 <%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 D | fan_zone_defs.mako.cpp | 186 ${indent(genMethod(meth=i), 3)}\
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | decorators.py | 46 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 D | Makefile | 6 obj-$(CONFIG_SGI_O2MACE_ETH) += meth.o
|
/openbmc/openbmc/poky/bitbake/lib/ |
H A D | pyinotify.py | 621 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 D | asus-laptop.c | 1255 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 D | 0001-Fix-Cython-3-compatibility.patch | 184 * :meth:`~.Group.create_dataset` and :meth:`~.Group.require_dataset` now accept
|