| /openbmc/qemu/scripts/qapi/ |
| H A D | events.py | 31 arg_type: Optional[QAPISchemaObjectType], 35 'param': build_params(arg_type, boxed)} 39 arg_type: Optional[QAPISchemaObjectType], 45 proto=build_event_send_proto(name, arg_type, boxed)) 82 arg_type: Optional[QAPISchemaObjectType], 93 have_args = boxed or (arg_type and not arg_type.is_empty()) 101 proto=build_event_send_proto(name, arg_type, boxed)) 104 assert arg_type is not None 110 ret += gen_param_var(arg_type) 130 assert arg_type is not None [all …]
|
| H A D | commands.py | 42 arg_type: Optional[QAPISchemaObjectType], 52 params=build_params(arg_type, boxed, 'Error **errp')) 56 arg_type: Optional[QAPISchemaObjectType], 64 assert arg_type 66 elif arg_type: 67 assert not arg_type.branches 68 for memb in arg_type.members: 189 arg_type: Optional[QAPISchemaObjectType], 194 have_args = boxed or (arg_type and not arg_type.is_empty()) 196 assert arg_type is not None [all …]
|
| H A D | schema.py | 249 arg_type: Optional[QAPISchemaObjectType], 266 arg_type: Optional[QAPISchemaObjectType], 1002 arg_type: Optional[str], 1012 self._arg_type_name = arg_type 1013 self.arg_type: Optional[QAPISchemaObjectType] = None 1027 arg_type = schema.resolve_type( 1029 if not isinstance(arg_type, QAPISchemaObjectType): 1033 % arg_type.describe()) 1034 self.arg_type = arg_type 1035 if self.arg_type.branches and not self.boxed: [all …]
|
| H A D | introspect.py | 361 arg_type: Optional[QAPISchemaObjectType], 367 arg_type = arg_type or self._schema.the_empty_object_type 370 'arg-type': self._use_type(arg_type), 380 arg_type: Optional[QAPISchemaObjectType], 384 arg_type = arg_type or self._schema.the_empty_object_type 385 self._gen_tree(name, 'event', {'arg-type': self._use_type(arg_type)},
|
| H A D | gen.py | 112 def build_params(arg_type: Optional[QAPISchemaObjectType], 118 assert arg_type 119 ret += '%s arg' % arg_type.c_param_type() 121 elif arg_type: 122 assert not arg_type.branches 123 for memb in arg_type.members:
|
| /openbmc/qemu/tests/qapi-schema/ |
| H A D | test-qapi.py | 72 arg_type, ret_type, gen, success_response, boxed, argument 75 % (name, arg_type and arg_type.name, 83 def visit_event(self, name, info, ifcond, features, arg_type, boxed): argument 84 print('event %s %s' % (name, arg_type and arg_type.name))
|
| /openbmc/qemu/scripts/tracetool/ |
| H A D | __init__.py | 147 arg_type, identifier = arg.rsplit('*', 1) 148 arg_type += '*' 151 arg_type, identifier = arg.rsplit(None, 1) 153 validate_type(arg_type) 154 res.append((arg_type, identifier))
|
| /openbmc/qemu/tests/qtest/ |
| H A D | qmp-cmd-test.c | 187 SchemaInfo *si, *arg_type, *ret_type; in add_query_tests() local 201 arg_type = qmp_schema_lookup(schema, si->u.command.arg_type); in add_query_tests() 202 if (object_type_has_mandatory_members(arg_type)) { in add_query_tests()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/pkgconfig/pkgconfig/ |
| H A D | 0001-Do-not-use-bool-as-a-field-name.patch | 29 switch (change->arg_type)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/ |
| H A D | 0001-Bug-fix-for-data-type-length-judgment.patch | 31 @@ -190,7 +190,7 @@ static bool get_integer_base_type(enum arg_type *type, int byte_size,
|
| /openbmc/qemu/linux-user/ |
| H A D | user-internals.h | 42 const argtype arg_type[5]; member
|
| H A D | syscall.c | 4689 const argtype *arg_type = ie->arg_type; in do_ioctl_fs_ioc_fiemap() local 4697 assert(arg_type[0] == TYPE_PTR); in do_ioctl_fs_ioc_fiemap() 4699 arg_type++; in do_ioctl_fs_ioc_fiemap() 4700 target_size_in = thunk_type_size(arg_type, 0); in do_ioctl_fs_ioc_fiemap() 4705 thunk_convert(buf_temp, argptr, arg_type, THUNK_HOST); in do_ioctl_fs_ioc_fiemap() 4740 thunk_convert(argptr, fm, arg_type, THUNK_TARGET); in do_ioctl_fs_ioc_fiemap() 4763 const argtype *arg_type = ie->arg_type; in do_ioctl_ifconf() local 4780 assert(arg_type[0] == TYPE_PTR); in do_ioctl_ifconf() 4783 arg_type++; in do_ioctl_ifconf() 4784 target_size = thunk_type_size(arg_type, 0); in do_ioctl_ifconf() [all …]
|
| H A D | strace.c | 1009 const argtype *arg_type; in print_syscall_ret_ioctl() local 1021 arg_type = ie->arg_type; in print_syscall_ret_ioctl() 1023 arg_type++; in print_syscall_ret_ioctl() 1024 target_size = thunk_type_size(arg_type, 0); in print_syscall_ret_ioctl() 1027 thunk_print(argptr, arg_type); in print_syscall_ret_ioctl() 4256 const argtype *arg_type; in print_ioctl() local 4271 arg_type = ie->arg_type; in print_ioctl() 4273 if (arg_type[0] != TYPE_NULL) { in print_ioctl() 4276 switch (arg_type[0]) { in print_ioctl() 4298 arg_type++; in print_ioctl() [all …]
|
| /openbmc/boost-dbus/include/dbus/ |
| H A D | message.hpp | 320 char arg_type = sub.iter_.get_arg_type(); in unpack() local 323 if (arg_type == element<decltype(t)>::code) { in unpack()
|
| /openbmc/qemu/docs/sphinx/ |
| H A D | qapidoc.py | 320 return ent.arg_type
|
| /openbmc/qemu/hw/scsi/ |
| H A D | mfi.h | 890 uint8_t arg_type; member
|
| /openbmc/skeleton/libopenbmc_intf/ |
| H A D | openbmc_intf.h | 3304 const gchar *arg_type, 3358 const gchar *arg_type, 3371 const gchar *arg_type,
|
| H A D | openbmc_intf.c | 25830 const gchar *arg_type, in flash_control_call_flash() argument 25839 arg_type, in flash_control_call_flash() 25892 const gchar *arg_type, in flash_control_call_flash_sync() argument 25901 arg_type, in flash_control_call_flash_sync()
|