/qemu/hw/usb/ |
H A D | combined-packet.c | 28 static void usb_combined_packet_add(USBCombinedPacket *combined, USBPacket *p) in usb_combined_packet_add() argument 30 qemu_iovec_concat(&combined->iov, &p->iov, 0, p->iov.size); in usb_combined_packet_add() 31 QTAILQ_INSERT_TAIL(&combined->packets, p, combined_entry); in usb_combined_packet_add() 32 p->combined = combined; in usb_combined_packet_add() 35 /* Note will free combined when the last packet gets removed */ 36 static void usb_combined_packet_remove(USBCombinedPacket *combined, in usb_combined_packet_remove() argument 39 assert(p->combined == combined); in usb_combined_packet_remove() 40 p->combined = NULL; in usb_combined_packet_remove() 41 QTAILQ_REMOVE(&combined->packets, p, combined_entry); in usb_combined_packet_remove() 42 if (QTAILQ_EMPTY(&combined->packets)) { in usb_combined_packet_remove() [all …]
|
H A D | core.c | 597 p->combined = NULL; in usb_packet_setup() 609 QEMUIOVector *iov = p->combined ? &p->combined->iov : &p->iov; in usb_packet_copy() 630 QEMUIOVector *iov = p->combined ? &p->combined->iov : &p->iov; in usb_packet_skip() 642 return p->combined ? p->combined->iov.size : p->iov.size; in usb_packet_size()
|
H A D | meson.build | 6 'combined-packet.c',
|
/qemu/include/exec/ |
H A D | memopidx.h | 35 * @oi: combined op/idx parameter 37 * Extract the memory operation from the combined value. 46 * @oi: combined op/idx parameter 48 * Extract the mmu index from the combined value.
|
/qemu/docs/ |
H A D | throttle.txt | 175 document apply to the combined I/O of all members of a group. 187 combined IOPS limit of 6000, and hd3 and hd5 are members of 'bar'. hd6 332 each one of them and an additional set of limits for the combined I/O 344 chained throttle filters: the drive's own filter and the combined 358 and 3000 respectively but the total combined I/O can never exceed 4000
|
/qemu/include/hw/ssi/ |
H A D | pl022.h | 18 * + sysbus IRQ: SSPINTR combined interrupt line
|
/qemu/pc-bios/s390-ccw/ |
H A D | virtio.h | 123 * VIRTIO_BLK_T_OUT may be combined with VIRTIO_BLK_T_SCSI_CMD or 125 * and may not be combined with any of the other flags.
|
/qemu/include/hw/dma/ |
H A D | pl080.h | 21 * + sysbus IRQ 0: DMACINTR combined interrupt line
|
/qemu/tests/unit/ |
H A D | test-keyval.c | 756 QDict *combined = keyval_parse("opt1=ABC,opt2.sub1=def,opt2.sub2=GHI,opt2.sub3=JKL,opt3=xyz", in test_keyval_merge_dict() local 762 g_assert(qobject_is_equal(QOBJECT(combined), QOBJECT(first))); in test_keyval_merge_dict() 765 qobject_unref(combined); in test_keyval_merge_dict() 774 QDict *combined = keyval_parse("opt1.0=abc,opt1.1=def,opt2.0=xyz", in test_keyval_merge_list() local 780 g_assert(qobject_is_equal(QOBJECT(combined), QOBJECT(first))); in test_keyval_merge_list() 783 qobject_unref(combined); in test_keyval_merge_list()
|
/qemu/include/hw/timer/ |
H A D | cmsdk-apb-dualtimer.h | 21 * + sysbus IRQ 0: combined timer interrupt TIMINTC
|
/qemu/docs/system/ |
H A D | vnc-security.rst | 100 Finally, the previous method can be combined with VNC password 202 Note that all mechanisms, except GSSAPI, should be combined with use of
|
/qemu/include/standard-headers/linux/ |
H A D | virtio_blk.h | 157 * VIRTIO_BLK_T_OUT may be combined with VIRTIO_BLK_T_SCSI_CMD or 159 * and may not be combined with any of the other flags.
|
/qemu/docs/system/arm/ |
H A D | emulation.rst | 68 - FEAT_FPACCOMBINE (Faulting on combined pointer authentication instructions) 69 - FEAT_FPACC_SPEC (Speculative behavior of combined pointer authentication instructions)
|
/qemu/tests/qemu-iotests/ |
H A D | 015 | 4 # Combined test to grow the refcount table and test snapshots.
|
H A D | 126 | 97 # in a sense always absolute paths, so such paths will never be combined with
|
H A D | 103 | 89 # Derive cache sizes from combined size (with a reasonable ratio, but we cannot
|
/qemu/include/hw/ppc/ |
H A D | pnv_lpc.h | 92 * In P8, ISA irqs are combined with internal sources to drive the
|
/qemu/include/qemu/ |
H A D | lockcnt.h | 108 * qemu_lockcnt_inc_and_unlock: combined unlock/increment on a QemuLockCnt.
|
/qemu/include/hw/misc/ |
H A D | iotkit-secctl.h | 22 * + named GPIO output "msc_irq" for the combined IRQ line from the MSCs
|
/qemu/docs/interop/ |
H A D | firmware.json | 284 # @combined: the executable file contains both code and 298 'data': [ 'split', 'combined', 'stateless' ] } 317 # @mode is @combined the executable must be
|
/qemu/docs/system/riscv/ |
H A D | sifive_u.rst | 105 peripherals as needed. This is U-Boot proper combined with an OpenSBI 316 then U-Boot SPL loads the combined payload image of OpenSBI fw_dynamic
|
/qemu/include/migration/ |
H A D | vmstate.h | 71 * be combined with VMS_VARRAY*. */ 83 * in general. May not be combined with VMS_ARRAY or any other 100 * combined with VMS_ARRAY or any other VMS_VARRAY*. */ 121 * combined with VMS_ARRAY or any other VMS_VARRAY*. */ 128 * combined with VMS_ARRAY or any other VMS_VARRAY*. */
|
/qemu/docs/devel/ |
H A D | loads-stores.rst | 79 among other things. The ``MemOp`` and mmu index are combined into 132 that the ``mmuidx`` parameter is not combined with a ``MemOp``,
|
/qemu/hw/core/ |
H A D | sysbus-fdt.c | 285 * Generates the combined xgbe/phy node following kernel >=4.2 362 /* combined XGBE/PHY node */ in add_amd_xgbe_fdt_node()
|
/qemu/hw/char/ |
H A D | pl011.c | 13 * + sysbus IRQ 0: UARTINTR (combined interrupt line) 124 INT_E | INT_MS | INT_RT | INT_TX | INT_RX, /* combined IRQ */
|