| /qemu/rust/hw/char/pl011/ |
| A D | README.md | 18 To generate docs for this crate, including private items: 21 cargo doc --no-deps --document-private-items --target x86_64-unknown-linux-gnu 30 | xargs cargo doc --no-deps --document-private-items --target x86_64-unknown-linux-gnu
|
| /qemu/python/qemu/utils/ |
| 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/rust/qemu-api/ |
| A D | README.md | 13 To generate docs for this crate, including private items: 16 cargo doc --no-deps --document-private-items
|
| /qemu/docs/specs/ |
| 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/ |
| 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/ |
| 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/ |
| A D | mtest2make.py | 107 for name, suite in testsuites.items(): 114 for name, suite in benchsuites.items():
|
| 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():
|
| A D | symlink-install-tree.py | 20 for source, dest in json.loads(out).items():
|
| A D | cpu-x86-uarch-abi.py | 101 for (feature, present) in cpu["model"]["props"].items():
|
| A D | analyse-locks-simpletrace.py | 78 for key, val in sorted(analyser.mutex_records.items(),
|
| /qemu/hw/i386/kvm/ |
| A D | xen_xenstore.c | 652 GList *items = NULL; in xs_directory() local 675 xs_append_strings(s, rsp, items, 0, false); in xs_directory() 677 g_list_free_full(items, g_free); in xs_directory() 689 GList *items = NULL; in xs_directory_part() local 740 xs_append_strings(s, rsp, items, offset, true); in xs_directory_part() 742 g_list_free_full(items, g_free); in xs_directory_part() 1521 GList *items = NULL, *l; in xs_be_directory() local 1526 err = xs_impl_directory(h->impl, DOMID_QEMU, t, path, NULL, &items); in xs_be_directory() 1532 items_ret = g_new0(char *, g_list_length(items) + 1); in xs_be_directory() 1534 for (l = items; l; l = l->next) { in xs_be_directory() [all …]
|
| A D | xenstore_impl.h | 36 uint64_t *gencnt, GList **items);
|
| 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/unit/ |
| 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/tests/qapi-schema/ |
| A D | test-qapi.py | 106 return {key: _massage(val) for key, val in subcond.items()} 129 for arg, section in doc.args.items(): 131 for feat, section in doc.features.items():
|
| /qemu/ui/ |
| 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/ |
| 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/ |
| 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/docs/user/ |
| A D | main.rst | 87 Activate logging of the specified items (use '-d help' for a list of 88 log items) 230 Activate logging of the specified items (use '-d help' for a list of 231 log items)
|
| /qemu/python/scripts/ |
| A D | vendor.py | 51 for dep_spec, checksum in packages.items():
|
| /qemu/tests/tsan/ |
| A D | suppressions.tsan | 2 # The goal would be to have here only items we do not
|
| /qemu/block/ |
| A D | quorum.c | 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/hw/display/ |
| A D | qxl.c | 41 if (cons >= ARRAY_SIZE((r)->items)) { \ 43 "%u >= %zu", cons, ARRAY_SIZE((r)->items)); \ 46 ret = &(r)->items[cons].el; \ 417 assert(prod < ARRAY_SIZE(ring->items)); in init_qxl_ram() 418 ring->items[prod].el = 0; in init_qxl_ram() 723 if (prod >= ARRAY_SIZE(ring->items)) { in qxl_push_free_res() 725 "%u >= %zu", prod, ARRAY_SIZE(ring->items)); in qxl_push_free_res() 728 ring->items[prod].el = 0; in qxl_push_free_res() 762 if (prod >= ARRAY_SIZE(ring->items)) { in interface_release_resource() 767 if (ring->items[prod].el == 0) { in interface_release_resource() [all …]
|
| /qemu/tests/qemu-iotests/ |
| A D | iotests.py | 270 for k, v in sorted(qmsg.items()): 616 items = enumerate(qmsg) 618 items = qmsg.items() 622 for k, v in items: 1109 return fields.items() <= ret.items()
|