Searched refs:type_ (Results 1 – 9 of 9) 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 | 68 for type_, name in event.args: 69 if is_string(type_): 88 for type_, name in event.args: 90 if is_string(type_): 94 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/qemu/python/qemu/utils/ |
| H A D | qom_common.py | 38 def __init__(self, name: str, type_: str, 42 self.type = type_ 72 def __init__(self, name: str, type_: str, value: object): 74 self.type = type_
|
| /openbmc/qemu/scripts/tracetool/ |
| H A D | __init__.py | 188 return [ type_ for type_, _ in self._args ] 192 return ["(%s)%s" % (type_, name) for type_, name in self._args]
|
| /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/u-boot/tools/buildman/ |
| H A D | kconfiglib.py | 157 def register_special_symbol(type_, name, val): argument 163 sym.type = type_
|