Searched refs:c_type (Results 1 – 5 of 5) sorted by relevance
/qemu/scripts/qapi/ |
H A D | visit.py | 41 c_type = c_name(name) + ' *' 43 c_type += '*' 49 c_name=c_name(name), c_type=c_type) 89 c_type=base.c_name()) 117 c_type=memb.type.c_name(), name=memb.name, 157 c_type=var.type.c_name(), c_name=c_name(var.name)) 261 c_type=var.type.c_name(), 267 c_type=var.type.c_name(),
|
H A D | commands.py | 49 c_type=(ret_type and ret_type.c_type()) or 'void', 160 c_type=ret_type.c_type(), c_name=ret_type.c_name()) 213 c_type=ret_type.c_type())
|
H A D | types.py | 136 c_name=c_name(name), c_type=element_type.c_type()) 151 c_type=memb.type.c_type(), c_name=c_name(memb.name)) 240 c_type=var.type.c_unboxed_type(),
|
H A D | schema.py | 331 def c_type(self) -> str: member in QAPISchemaType 336 return self.c_type() 340 return self.c_type() 366 return not self.c_type().endswith(POINTER_SUFFIX) 383 def __init__(self, name: str, json_type: str, c_type: str): 388 self._c_type_name = c_type 393 def c_type(self) -> str: member in QAPISchemaBuiltinType 447 def c_type(self) -> str: member in QAPISchemaEnumType 496 def c_type(self) -> str: member in QAPISchemaArrayType 624 def c_type(self) -> str: member in QAPISchemaObjectType [all …]
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | qom_macros.py | 314 c_type = self.group('c_type') 315 if not typename or not c_type: 328 classtype = c_type 330 instancetype = c_type
|