/qemu/python/qemu/utils/ |
H A D | qom.py | 138 for key, value in rsp.items(): 229 items = self.qom_list(path) 230 for item in items: 240 for item in items:
|
/qemu/docs/specs/ |
H A D | fw_cfg.rst | 8 This hardware interface allows the guest to retrieve various data items 49 items are accessed with a selector value between 0x0000-0x7fff, and 50 architecture specific configuration items are accessed with a selector 135 Firmware configuration items stored at selector keys 0x0020 or higher 157 of selector keys and their respective items' purpose, format and writeability. 163 items, and up to 0x4000 architecturally specific ones. 176 In practice, the number of allowed firmware configuration items depends on the 226 are dropped entirely. Writes to read-only items are also rejected. All of these 247 Since v2.4, "file" fw_cfg items (i.e., items with selector keys above 290 All externally provided fw_cfg items are read-only to the guest.
|
/qemu/scripts/simplebench/ |
H A D | bench-backup.py | 168 items = getattr(namespace, self.dest) or [] 169 items.extend(values) 170 setattr(namespace, self.dest, items)
|
/qemu/docs/sphinx/ |
H A D | dbusdomain.py | 293 for x in self.domain.data["objects"].items() 314 sorted_content = sorted(content.items()) 367 for fullname, obj in list(self.objects.items()): 400 for refname, obj in self.objects.items(): 404 for name, obj in otherdata['objects'].items():
|
/qemu/scripts/ |
H A D | mtest2make.py | 107 for name, suite in testsuites.items(): 114 for name, suite in benchsuites.items():
|
H A D | decodetree.py | 107 for k, v in self.graph.items(): 116 ordered = set(item for item, dep in data.items() if not dep) 121 for item, dep in data.items() 255 for k, a in flds_a.items(): 264 for k, a in flds_a.items(): 497 for n, f in self.fields.items(): 508 for n, f in self.fields.items(): 820 for b, l in bins.items(): 1013 for n, c in flds.items(): 1472 for b, l in bins.items():
|
H A D | symlink-install-tree.py | 20 for source, dest in json.loads(out).items():
|
H A D | analyse-locks-simpletrace.py | 78 for key, val in sorted(analyser.mutex_records.items(),
|
/qemu/hw/i386/kvm/ |
H A D | xen_xenstore.c | 654 GList *items = NULL; in xs_directory() local 666 err = xs_impl_directory(s->impl, xen_domid, tx_id, path, NULL, &items); in xs_directory() 677 xs_append_strings(s, rsp, items, 0, false); in xs_directory() 679 g_list_free_full(items, g_free); in xs_directory() 691 GList *items = NULL; in xs_directory_part() local 731 err = xs_impl_directory(s->impl, xen_domid, tx_id, path, &gencnt, &items); in xs_directory_part() 742 xs_append_strings(s, rsp, items, offset, true); in xs_directory_part() 744 g_list_free_full(items, g_free); in xs_directory_part() 1523 GList *items = NULL, *l; in xs_be_directory() local 1528 err = xs_impl_directory(h->impl, DOMID_QEMU, t, path, NULL, &items); in xs_be_directory() [all …]
|
H A D | xenstore_impl.h | 36 uint64_t *gencnt, GList **items);
|
H A D | xenstore_impl.c | 774 GList **items = user_data; in append_directory_item() local 776 *items = g_list_insert_sorted(*items, g_strdup(key), (GCompareFunc)strcmp); in append_directory_item() 782 GList **items = op->op_opaque; in xs_node_directory() local 788 g_hash_table_foreach((*n)->children, append_directory_item, items); in xs_node_directory() 913 uint64_t *gencnt, GList **items) in xs_impl_directory() argument 929 op.op_opaque = items; in xs_impl_directory()
|
/qemu/tests/functional/ |
H A D | test_virtio_balloon.py | 69 for name, val in stats.items(): 105 for name, val in stats.items():
|
/qemu/tests/unit/ |
H A D | test-xs-node.c | 320 GList *items = NULL; in test_xs_node_simple() local 404 &items); in test_xs_node_simple() 406 g_assert(items); in test_xs_node_simple() 408 g_assert(!strcmp(items->data, "path")); in test_xs_node_simple() 409 g_assert(items->next); in test_xs_node_simple() 410 g_assert(!strcmp(items->next->data, "path2")); in test_xs_node_simple() 411 g_assert(!items->next->next); in test_xs_node_simple() 412 g_list_free_full(items, g_free); in test_xs_node_simple()
|
/qemu/ui/ |
H A D | vnc-enc-zlib.c | 32 void *vnc_zlib_zalloc(void *x, unsigned items, unsigned size) in vnc_zlib_zalloc() argument 36 size *= items; in vnc_zlib_zalloc()
|
/qemu/scripts/qapi/ |
H A D | expr.py | 330 for key, arg in members.items(): 386 for (key, arg) in value.items(): 520 for (key, value) in members.items(): 545 for (key, value) in members.items():
|
/qemu/monitor/ |
H A D | hmp-cmds.c | 263 const char *items = qdict_get_str(qdict, "items"); in hmp_log() local 266 if (!strcmp(items, "none")) { in hmp_log() 269 mask = qemu_str_to_log_mask(items); in hmp_log()
|
/qemu/scripts/rust/ |
H A D | rustc_args.py | 91 for k, v in toml_lints.items(): 93 for lint, data in v.items():
|
/qemu/docs/user/ |
H A D | main.rst | 91 Activate logging of the specified items (use '-d help' for a list of 92 log items) 246 Activate logging of the specified items (use '-d help' for a list of 247 log items)
|
/qemu/python/scripts/ |
H A D | vendor.py | 51 for dep_spec, checksum in packages.items():
|
/qemu/.gitlab-ci.d/ |
H A D | check-units.py | 40 sorted_build_units = sorted(build_units.items(),
|
/qemu/tests/tsan/ |
H A D | suppressions.tsan | 2 # The goal would be to have here only items we do not
|
/qemu/block/ |
H A D | quorum.c | 55 * The set of votes will be tracked with the items field and its cardinality is 62 QLIST_HEAD(, QuorumVoteItem) items; 266 QLIST_FOREACH(item, &version->items, next) { in quorum_report_bad_versions() 311 QLIST_FOREACH(item, &version->items, next) { in quorum_rewrite_bad_versions() 324 QLIST_FOREACH(item, &version->items, next) { in quorum_rewrite_bad_versions() 358 QLIST_INIT(&version->items); in quorum_count_vote() 369 QLIST_INSERT_HEAD(&version->items, item, next); in quorum_count_vote() 379 QLIST_FOREACH_SAFE(item, &version->items, next, next_item) { in quorum_free_vote_list()
|
/qemu/tests/qapi-schema/ |
H A D | test-qapi.py | 120 for arg, section in doc.args.items(): 122 for feat, section in doc.features.items():
|
/qemu/rust/ |
H A D | meson.build |
|
/qemu/hw/display/ |
H A D | qxl.c | 42 if (cons >= ARRAY_SIZE((r)->items)) { \ 44 "%u >= %zu", cons, ARRAY_SIZE((r)->items)); \ 47 ret = &(r)->items[cons].el; \ 426 assert(prod < ARRAY_SIZE(ring->items)); in init_qxl_ram() 427 ring->items[prod].el = 0; in init_qxl_ram() 736 if (prod >= ARRAY_SIZE(ring->items)) { in qxl_push_free_res() 738 "%u >= %zu", prod, ARRAY_SIZE(ring->items)); in qxl_push_free_res() 741 ring->items[prod].el = 0; in qxl_push_free_res() 775 if (prod >= ARRAY_SIZE(ring->items)) { in interface_release_resource() 777 "%u >= %zu", prod, ARRAY_SIZE(ring->items)); in interface_release_resource() [all …]
|