Lines Matching +full:value +full:- +full:start
5 * later. See the COPYING file in the top-level directory.
9 #include "hw/qdev-core.h"
13 #include "qapi/qapi-commands-qom.h"
33 ObjectPropertyInfoList *start = list; in hmp_qom_list() local
35 ObjectPropertyInfo *value = list->value; in hmp_qom_list() local
38 value->name, value->type); in hmp_qom_list()
39 list = list->next; in hmp_qom_list()
41 qapi_free_ObjectPropertyInfoList(start); in hmp_qom_list()
51 const char *value = qdict_get_str(qdict, "value"); in hmp_qom_set() local
61 object_property_parse(obj, property, value, &err); in hmp_qom_set()
64 QObject *obj = qobject_from_json(value, &err); in hmp_qom_set()
83 monitor_printf(mon, "%s\n", str->str); in hmp_qom_get()
127 for (i = 0; i < children->len; i++) { in print_qom_composition()
189 name = object_class_get_name(OBJECT_CLASS(elt->data)); in object_add_completion()
193 elt = elt->next; in object_add_completion()
200 ObjectPropertyInfoList *list, *start; in object_del_completion() local
209 start = list = qmp_qom_list("/objects", NULL); in object_del_completion()
211 ObjectPropertyInfo *info = list->value; in object_del_completion()
213 if (!strncmp(info->type, "child<", 5)) { in object_del_completion()
214 readline_add_completion_of(rs, str, info->name); in object_del_completion()
216 list = list->next; in object_del_completion()
218 qapi_free_ObjectPropertyInfoList(start); in object_del_completion()