/qemu/hw/acpi/ |
A D | pcihp.c | 126 AcpiPciHpFind *find = opaque; in acpi_pcihp_test_hotplug_bus() local 127 if (find->bsel == acpi_pcihp_get_bsel(bus)) { in acpi_pcihp_test_hotplug_bus() 128 find->bus = bus; in acpi_pcihp_test_hotplug_bus() 134 AcpiPciHpFind find = { .bsel = bsel, .bus = NULL }; in acpi_pcihp_find_hotplug_bus() local 140 pci_for_each_bus(s->root, acpi_pcihp_test_hotplug_bus, &find); in acpi_pcihp_find_hotplug_bus() 146 if (!bsel && !find.bus) { in acpi_pcihp_find_hotplug_bus() 147 find.bus = s->root; in acpi_pcihp_find_hotplug_bus() 161 if (find.bus && !qbus_is_hotpluggable(BUS(find.bus))) { in acpi_pcihp_find_hotplug_bus() 162 find.bus = NULL; in acpi_pcihp_find_hotplug_bus() 164 return find.bus; in acpi_pcihp_find_hotplug_bus()
|
/qemu/roms/ |
A D | Makefile | 31 find-cross-ld = $(firstword $(wildcard $(patsubst %,%/$(1)-*$(system)*-ld,$(path)))) 33 find-cross-gcc = $(firstword $(wildcard $(patsubst %ld,%gcc,$(call find-cross-ld,$(1))))) 35 find-cross-prefix = $(subst gcc,,$(notdir $(call find-cross-gcc,$(1)))) 37 arm_cross_prefix := $(call find-cross-prefix,arm) 38 powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64) 39 powerpc_cross_prefix := $(call find-cross-prefix,powerpc) 40 x86_64_cross_prefix := $(call find-cross-prefix,x86_64) 41 riscv32_cross_prefix := $(call find-cross-prefix,riscv32) 42 riscv64_cross_prefix := $(call find-cross-prefix,riscv64)
|
/qemu/scripts/modules/ |
A D | module_block.py | 44 if line.find(".format_name") != -1: 46 elif line.find(".protocol_name") != -1: 51 elif line.find("static BlockDriver") != -1:
|
/qemu/tests/unit/ |
A D | test-interval-tree.c | 156 IntervalTreeNode *find; in test_find_many_range() local 180 find = interval_tree_iter_first(&root, 2000, 2999); in test_find_many_range() 181 for (i = 0; find != NULL; i++) { in test_find_many_range() 182 find = interval_tree_iter_next(find, 2000, 2999); in test_find_many_range()
|
/qemu/hw/core/ |
A D | sysbus.c | 38 SysBusFind *find = opaque; in find_sysbus_device() local 50 find->func(sbdev, find->opaque); in find_sysbus_device() 62 SysBusFind find = { in foreach_dynamic_sysbus_device() local 69 find_sysbus_device(container, &find); in foreach_dynamic_sysbus_device() 71 find_sysbus_device(container, &find); in foreach_dynamic_sysbus_device()
|
/qemu/scripts/ |
A D | modinfo-collect.py | 14 if target != '' and command['command'].find(target) == -1: 61 if line.find('MODINFO') != -1:
|
A D | analyze-inclusions | 45 find . -name "*.d" -exec grep -l "$@" {} + | wc -l 48 echo Found $(find . -name "*.d" | wc -l) object files
|
A D | modinfo-generate.py | 41 if line.find("MODINFO_START") != -1:
|
/qemu/tests/functional/qemu_test/ |
A D | testcase.py | 135 if self._machinehelp.find(machinename) < 0: 164 if netdevhelp.find('\n' + netdevname + '\n') < 0: 170 if devhelp.find(devicename) < 0:
|
/qemu/tests/migration/ |
A D | initrd-stress.sh | 10 (cd "$INITRD_DIR" && (find | cpio --quiet -o -H newc | gzip -9)) > "$INITRD"
|
/qemu/tests/tcg/multiarch/gdbstub/ |
A D | test-qxfer-auxv-read.py | 17 report(auxv.find("sha1"), "Found test binary name in auxv")
|
A D | test-qxfer-siginfo-read.py | 24 report(resp.find("si_addr = 0xdeadbeef"), "Found fault address.")
|
/qemu/tests/docker/ |
A D | test-fuzz | 24 for fuzzer in $(find ./build-oss-fuzz/DEST_DIR/ -executable -type f | grep -v slirp); do
|
/qemu/rust/hw/char/pl011/ |
A D | meson.build | 22 # Putting proc macro crates in `dependencies` is necessary for Meson to find
|
/qemu/tests/qemu-iotests/ |
A D | 173 | 57 echo === Running QEMU, using block-stream to find backing image ===
|
A D | 173.out | 5 === Running QEMU, using block-stream to find backing image ===
|
A D | 283.out | 21 {"return": "Error: Cannot find device='' nor node-name='backup-filter'\r\n"}
|
A D | 085.out | 27 {"error": {"class": "GenericError", "desc": "Cannot find device='' nor node-name=''"}} 252 {"error": {"class": "GenericError", "desc": "Cannot find device='snap_16' nor node-name='snap_16'"}} 257 {"error": {"class": "GenericError", "desc": "Cannot find device='nodevice' nor node-name='nodevice'…
|
/qemu/scripts/tracetool/ |
A D | __init__.py | 298 if fmt.find("%m") != -1 or fmt_trans.find("%m") != -1:
|
/qemu/hw/xen/ |
A D | trace-events | 77 xen_invalidate_map_cache_entry_unlocked_not_found(void *p) "could not find %p" 81 xen_ram_addr_from_mapcache_not_found(void *p) "could not find %p" 83 xen_ram_addr_from_mapcache_not_in_cache(void *p) "Trying to find address %p that is not in the mapc…
|
/qemu/docs/sphinx/ |
A D | dbusparser.py | 150 colon_index = line.find(": ") 165 colon_index = line.find(": ")
|
/qemu/docs/system/ |
A D | guest-loader.rst | 15 - sets platform FDT data so hypervisors can find and boot them
|
/qemu/qapi/ |
A D | replay.json | 106 # snapshot and replays the execution to find the desired instruction.
|
/qemu/ |
A D | .patchew.yml | 94 This series failed the {{ test }} build test. Please find the testing commands and 104 This series failed build test on {{test}} host. Please find the details below.
|
/qemu/docs/ |
A D | qemupciserial.inf | 8 ; Installing the driver: Go to device manager. You should find a "pci
|