Searched refs:type_ (Results 1 – 12 of 12) sorted by relevance
/openbmc/qemu/scripts/tracetool/format/ |
H A D | d.py | 48 for type_, name in e.args: 51 if type_ == 'bool': 52 type_ = '_Bool' 53 if type_ == 'bool *': 54 type_ = '_Bool *' 58 if type_ == 'int8_t *': 59 type_ = 'signed char *' 62 type_ = type_.replace('unsigned long long', 'uint64_t') 63 type_ = type_.replace('signed long long', 'int64_t') 64 type_ = type_.replace('long long', 'int64_t') [all …]
|
H A D | simpletrace_stap.py | 38 for type_, name in e.args: 40 if is_string(type_): 56 for type_, name in e.args: 58 if is_string(type_):
|
H A D | log_stap.py | 103 for type_, name in e.args: 105 if is_string(type_): 114 for type_, name in e.args: 116 if is_string(type_):
|
/openbmc/qemu/scripts/tracetool/backend/ |
H A D | simple.py | 63 for type_, name in event.args: 64 if is_string(type_): 95 for type_, name in event.args: 97 if is_string(type_): 101 elif type_.endswith('*'):
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | models.py | 36 def _check_value(self, key: str, type_: type, typestr: str) -> None: 38 if not isinstance(self._raw[key], type_): 43 def _check_member(self, key: str, type_: type, typestr: str) -> None: 45 self._check_value(key, type_, typestr)
|
/openbmc/linux/rust/macros/ |
H A D | module.rs | 94 type_: String, field 128 "type" => info.type_ = expect_ident(it), in parse() 344 type_ = info.type_, in module()
|
/openbmc/qemu/scripts/tracetool/ |
H A D | __init__.py | 186 return [ type_ for type_, _ in self._args ] 190 return ["(%s)%s" % (type_, name) for type_, name in self._args]
|
/openbmc/qemu/python/qemu/utils/ |
H A D | qom_common.py | 38 def __init__(self, name: str, type_: str, 42 self.type = type_
|
/openbmc/qemu/util/ |
H A D | qsp.c | 360 #define QSP_GEN_VOID(type_, qsp_t_, func_, impl_) \ argument 361 static void func_(type_ *obj, const char *file, int line) \ 374 #define QSP_GEN_RET1(type_, qsp_t_, func_, impl_) \ argument 375 static int func_(type_ *obj, const char *file, int line) \
|
/openbmc/linux/Documentation/bpf/ |
H A D | drgn.rst | 112 - print(f"{id_:>6}: {type_:32} {name:32} {linked}") 114 + print(f"{id_:>6}: {type_:32} {name:32}")
|
/openbmc/linux/net/xfrm/ |
H A D | xfrm_state.c | 235 WARN_ON((afi)->type_ ## name); \ in xfrm_register_type() 236 (afi)->type_ ## name = (T); \ in xfrm_register_type() 280 WARN_ON((afi)->type_ ## name != (T)); \ in xfrm_unregister_type() 281 (afi)->type_ ## name = NULL; \ in xfrm_unregister_type()
|
/openbmc/u-boot/tools/buildman/ |
H A D | kconfiglib.py | 157 def register_special_symbol(type_, name, val): argument 163 sym.type = type_
|