Lines Matching full:prop
36 ObjectProperty *prop; in qmp_qom_list() local
51 while ((prop = object_property_iter_next(&iter))) { in qmp_qom_list()
56 value->name = g_strdup(prop->name); in qmp_qom_list()
57 value->type = g_strdup(prop->type); in qmp_qom_list()
126 ObjectProperty *prop; in qmp_device_list_properties() local
147 while ((prop = object_property_iter_next(&iter))) { in qmp_device_list_properties()
151 if (strcmp(prop->name, "type") == 0 || in qmp_device_list_properties()
152 strcmp(prop->name, "realized") == 0 || in qmp_device_list_properties()
153 strcmp(prop->name, "hotpluggable") == 0 || in qmp_device_list_properties()
154 strcmp(prop->name, "hotplugged") == 0 || in qmp_device_list_properties()
155 strcmp(prop->name, "parent_bus") == 0) { in qmp_device_list_properties()
162 if (strstart(prop->name, "legacy-", NULL)) { in qmp_device_list_properties()
167 info->name = g_strdup(prop->name); in qmp_device_list_properties()
168 info->type = g_strdup(prop->type); in qmp_device_list_properties()
169 info->description = g_strdup(prop->description); in qmp_device_list_properties()
170 info->default_value = qobject_ref(prop->defval); in qmp_device_list_properties()
185 ObjectProperty *prop; in qmp_qom_list_properties() local
208 while ((prop = object_property_iter_next(&iter))) { in qmp_qom_list_properties()
212 info->name = g_strdup(prop->name); in qmp_qom_list_properties()
213 info->type = g_strdup(prop->type); in qmp_qom_list_properties()
214 info->description = g_strdup(prop->description); in qmp_qom_list_properties()
215 info->default_value = qobject_ref(prop->defval); in qmp_qom_list_properties()