Home
last modified time | relevance | path

Searched full:combined (Results 1 – 25 of 92) sorted by relevance

1234

/qemu/hw/usb/
H A Dcombined-packet.c28 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 Dcore.c597 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 Dmeson.build6 'combined-packet.c',
/qemu/include/exec/
H A Dmemopidx.h35 * @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 Dthrottle.txt175 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 Dpl022.h18 * + sysbus IRQ: SSPINTR combined interrupt line
/qemu/pc-bios/s390-ccw/
H A Dvirtio.h123 * 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 Dpl080.h21 * + sysbus IRQ 0: DMACINTR combined interrupt line
/qemu/tests/unit/
H A Dtest-keyval.c756 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 Dcmsdk-apb-dualtimer.h21 * + sysbus IRQ 0: combined timer interrupt TIMINTC
/qemu/docs/system/
H A Dvnc-security.rst100 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 Dvirtio_blk.h157 * 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 Demulation.rst68 - 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 D0154 # Combined test to grow the refcount table and test snapshots.
H A D12697 # in a sense always absolute paths, so such paths will never be combined with
H A D10389 # Derive cache sizes from combined size (with a reasonable ratio, but we cannot
/qemu/include/hw/ppc/
H A Dpnv_lpc.h92 * In P8, ISA irqs are combined with internal sources to drive the
/qemu/include/qemu/
H A Dlockcnt.h108 * qemu_lockcnt_inc_and_unlock: combined unlock/increment on a QemuLockCnt.
/qemu/include/hw/misc/
H A Diotkit-secctl.h22 * + named GPIO output "msc_irq" for the combined IRQ line from the MSCs
/qemu/docs/interop/
H A Dfirmware.json284 # @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 Dsifive_u.rst105 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 Dvmstate.h71 * 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 Dloads-stores.rst79 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 Dsysbus-fdt.c285 * 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 Dpl011.c13 * + sysbus IRQ 0: UARTINTR (combined interrupt line)
124 INT_E | INT_MS | INT_RT | INT_TX | INT_RX, /* combined IRQ */

1234