Lines Matching full:obj
34 Object *obj = object_resolve_path(path, &ambiguous); in qom_resolve_path() local
36 if (obj == NULL) { in qom_resolve_path()
44 return obj; in qom_resolve_path()
49 Object *obj; in qmp_qom_list() local
54 obj = qom_resolve_path(path, errp); in qmp_qom_list()
55 if (obj == NULL) { in qmp_qom_list()
59 object_property_iter_init(&iter, obj); in qmp_qom_list()
75 Object *obj; in qmp_qom_set() local
77 obj = object_resolve_path(path, NULL); in qmp_qom_set()
78 if (!obj) { in qmp_qom_set()
84 object_property_set_qobject(obj, property, value, errp); in qmp_qom_set()
89 Object *obj; in qmp_qom_get() local
91 obj = object_resolve_path(path, NULL); in qmp_qom_get()
92 if (!obj) { in qmp_qom_get()
98 return object_property_get_qobject(obj, property, errp); in qmp_qom_get()
134 Object *obj; in qmp_device_list_properties() local
153 obj = object_new_with_class(klass); in qmp_device_list_properties()
155 object_property_iter_init(&iter, obj); in qmp_device_list_properties()
184 object_unref(obj); in qmp_device_list_properties()
193 Object *obj = NULL; in qmp_qom_list_properties() local
214 obj = object_new(typename); in qmp_qom_list_properties()
215 object_property_iter_init(&iter, obj); in qmp_qom_list_properties()
229 object_unref(obj); in qmp_qom_list_properties()