Home
last modified time | relevance | path

Searched refs:ambiguous (Results 1 – 13 of 13) sorted by relevance

/qemu/tests/unit/
H A Dcheck-qom-proplist.c617 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 Dqom-qmp-cmds.c33 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 Dqom-hmp-cmds.c138 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 Dobject.c1911 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 Dacpi-microvm.c108 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 Ddouble-type.json1 # we reject an expression with ambiguous metatype
/qemu/hw/s390x/
H A Ds390-stattrib.c351 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 Dobject.h1593 Object *object_resolve_path(const char *path, bool *ambiguous);
1614 bool *ambiguous);
/qemu/hw/ppc/
H A De500.c331 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 Dglossary.rst86 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 Dcpu.c6619 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 DREADME.rst435 some counterexamples which highlight ambiguous derivations, passing the
/qemu/qapi/
H A Dqom.json97 # return to indicate that the match was ambiguous.