Lines Matching full:path
22 const char *path = qdict_get_try_str(qdict, "path"); in hmp_qom_list() local
26 if (path == NULL) { in hmp_qom_list()
31 list = qmp_qom_list(path, &err); in hmp_qom_list()
49 const char *path = qdict_get_str(qdict, "path"); in hmp_qom_set() local
55 Object *obj = object_resolve_path(path, NULL); in hmp_qom_set()
59 "Device '%s' not found", path); in hmp_qom_set()
67 qmp_qom_set(path, property, obj, &err); in hmp_qom_set()
76 const char *path = qdict_get_str(qdict, "path"); in hmp_qom_get() local
79 QObject *obj = qmp_qom_get(path, property, &err); in hmp_qom_get()
136 const char *path = qdict_get_try_str(dict, "path"); in hmp_info_qom_tree() local
140 if (path) { in hmp_info_qom_tree()
141 obj = object_resolve_path(path, &ambiguous); in hmp_info_qom_tree()
143 monitor_printf(mon, "Path '%s' could not be resolved.\n", path); in hmp_info_qom_tree()
147 monitor_printf(mon, "Warning: Path '%s' is ambiguous.\n", path); in hmp_info_qom_tree()