Searched refs:ambiguous (Results 1 – 13 of 13) sorted by relevance
/qemu/tests/unit/ |
H A D | check-qom-proplist.c | 617 bool ambiguous; in test_qom_partial_path() local 632 ambiguous = false; in test_qom_partial_path() 633 g_assert(!object_resolve_path_type("", TYPE_DUMMY, &ambiguous)); in test_qom_partial_path() 634 g_assert(ambiguous); in test_qom_partial_path() 637 ambiguous = false; in test_qom_partial_path() 638 g_assert(!object_resolve_path("obj2", &ambiguous)); in test_qom_partial_path() 639 g_assert(ambiguous); in test_qom_partial_path() 642 ambiguous = false; in test_qom_partial_path() 643 g_assert(object_resolve_path("obj1", &ambiguous) == obj1); in test_qom_partial_path() 644 g_assert(!ambiguous); in test_qom_partial_path()
|
/qemu/qom/ |
H A D | qom-qmp-cmds.c | 33 bool ambiguous = false; in qom_resolve_path() local 34 Object *obj = object_resolve_path(path, &ambiguous); in qom_resolve_path() 37 if (ambiguous) { in qom_resolve_path()
|
H A D | qom-hmp-cmds.c | 138 bool ambiguous = false; in hmp_info_qom_tree() local 141 obj = object_resolve_path(path, &ambiguous); in hmp_info_qom_tree() 146 if (ambiguous) { in hmp_info_qom_tree()
|
H A D | object.c | 1911 bool ambiguous = false; in object_resolve_link() local 1917 target = object_resolve_path_type(path, target_type, &ambiguous); in object_resolve_link() 1919 if (ambiguous) { in object_resolve_link() 1923 target = object_resolve_path(path, &ambiguous); in object_resolve_link() 1924 if (target || ambiguous) { in object_resolve_link() 2171 bool *ambiguous) in object_resolve_partial_path() argument 2188 typename, ambiguous); in object_resolve_partial_path() 2191 *ambiguous = true; in object_resolve_partial_path() 2197 if (*ambiguous) { in object_resolve_partial_path() 2206 bool *ambiguous) in object_resolve_path_type() argument [all …]
|
/qemu/hw/i386/ |
H A D | acpi-microvm.c | 108 bool ambiguous; in build_dsdt_microvm() local 113 isabus = object_resolve_path_type("", TYPE_ISA_BUS, &ambiguous); in build_dsdt_microvm() 115 assert(!ambiguous); in build_dsdt_microvm()
|
/qemu/tests/qapi-schema/ |
H A D | double-type.json | 1 # we reject an expression with ambiguous metatype
|
/qemu/hw/s390x/ |
H A D | s390-stattrib.c | 351 bool ambiguous = false; in s390_stattrib_realize() local 353 object_resolve_path_type("", TYPE_S390_STATTRIB, &ambiguous); in s390_stattrib_realize() 354 if (ambiguous) { in s390_stattrib_realize()
|
/qemu/include/qom/ |
H A D | object.h | 1593 Object *object_resolve_path(const char *path, bool *ambiguous); 1614 bool *ambiguous);
|
/qemu/hw/ppc/ |
H A D | e500.c | 331 bool ambiguous; in platform_bus_create_devtree() local 359 &ambiguous)); in platform_bus_create_devtree() 361 assert(!ambiguous); in platform_bus_create_devtree()
|
/qemu/docs/ |
H A D | glossary.rst | 86 can be ambiguous. 246 The term "target" can be ambiguous. In most places in QEMU it is used as a
|
/qemu/target/i386/ |
H A D | cpu.c | 6619 bool ambiguous = false; in x86_cpu_parse_featurestr() 6665 ambiguous = true; in x86_cpu_parse_featurestr() 6671 ambiguous = true; in x86_cpu_parse_featurestr() 6696 if (ambiguous) { in x86_cpu_list_feature_names() 6697 warn_report("Compatibility of ambiguous CPU model " in x86_cpu_list_feature_names() 6603 bool ambiguous = false; x86_cpu_parse_featurestr() local
|
/qemu/target/hexagon/idef-parser/ |
H A D | README.rst | 435 some counterexamples which highlight ambiguous derivations, passing the
|
/qemu/qapi/ |
H A D | qom.json | 97 # return to indicate that the match was ambiguous.
|