/qemu/python/qemu/qmp/ |
H A D | util.py | 43 transport = cast( # type: ignore[redundant-cast] 44 asyncio.WriteTransport, writer.transport 48 low, high = transport.get_write_buffer_limits() # type: ignore 49 transport.set_write_buffer_limits(0, 0) 53 transport.set_write_buffer_limits(high, low) 118 transport = writer.transport 119 assert isinstance(transport, asyncio.WriteTransport) 120 return transport.is_closing() 134 transport = writer.transport 135 assert isinstance(transport, asyncio.WriteTransport) [all …]
|
H A D | qmp_client.py | 641 sock = self._writer.transport.get_extra_info('socket')
|
/qemu/docs/devel/migration/ |
H A D | virtio.rst | 17 - virtio transport (pci, ccw, ...), for the different proxy devices and 18 transport specific state (msix vectors, indicators, ...) 34 virtio core virtio transport virtio device 43 - save transport-specific 50 - save transport-specific 71 virtio core virtio transport virtio device 80 - load transport-specific 87 - load transport-specific 114 added to the core for compatibility reasons. If transport or device specific
|
H A D | CPR.rst | 239 "addr": { "transport": "socket", 253 "addr": { "transport": "socket", "type": "inet", 256 "addr": { "transport": "socket", "type": "unix", 289 "addr": { "transport": "socket", 302 "addr": { "transport": "socket", "type": "inet", 305 "addr": { "transport": "socket", "type": "unix",
|
/qemu/migration/ |
H A D | cpr-transfer.c | 24 if (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET && in cpr_transfer_output() 48 if (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET && in cpr_transfer_input()
|
H A D | migration.c | 190 if (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET) { in transport_supports_multi_channels() 196 } else if (addr->transport == MIGRATION_ADDRESS_TYPE_FILE) { in transport_supports_multi_channels() 220 if (addr->transport == MIGRATION_ADDRESS_TYPE_FILE) { in transport_supports_seeking() 230 return addr->transport == MIGRATION_ADDRESS_TYPE_FILE; in transport_supports_extra_fds() 257 addr->transport == MIGRATION_ADDRESS_TYPE_FILE) { in migration_channels_and_transport_compatible() 269 if (addr->transport == MIGRATION_ADDRESS_TYPE_RDMA) { in migration_capabilities_and_transport_compatible() 670 addr->transport = MIGRATION_ADDRESS_TYPE_EXEC; in migrate_uri_parse() 684 addr->transport = MIGRATION_ADDRESS_TYPE_RDMA; in migrate_uri_parse() 689 addr->transport = MIGRATION_ADDRESS_TYPE_SOCKET; in migrate_uri_parse() 699 addr->transport = MIGRATION_ADDRESS_TYPE_FILE; in migrate_uri_parse() [all …]
|
H A D | trace-events | 224 …transport, const char *transport_name) "%s RDMA Device opened: kernel name %s uverbs device name %…
|
/qemu/tests/migration-stress/guestperf/ |
H A D | report.py | 57 transport, argument 71 self._transport = transport
|
H A D | shell.py | 74 transport=args.transport,
|
H A D | engine.py | 39 def __init__(self, binary, dst_host, kernel, initrd, transport="tcp", argument 46 self._transport = transport # 'unix' or 'tcp' or 'rdma'
|
/qemu/docs/system/openrisc/ |
H A D | virt.rst | 15 * 8 virtio-mmio transport devices
|
/qemu/docs/devel/ |
H A D | virtio-backends.rst | 23 transport they use. For example -device virtio-foo represents the foo 25 device using the PCI transport.
|
/qemu/block/ |
H A D | iscsi.c | 1688 switch (iscsi_url->transport) { in iscsi_parse_filename() 1697 iscsi_url->transport); in iscsi_parse_filename() 1808 enum iscsi_transport_type transport; in iscsi_open() local 1831 transport = TCP_TRANSPORT; in iscsi_open() 1833 transport = ISER_TRANSPORT; in iscsi_open() 1854 if (iscsi_init_transport(iscsi, transport)) { in iscsi_open()
|
/qemu/hw/9pfs/ |
H A D | 9p.h | 348 const V9fsTransport *transport; member
|
H A D | 9p.c | 64 ret = pdu->s->transport->pdu_vmarshal(pdu, offset, fmt, ap); in pdu_marshal() 76 ret = pdu->s->transport->pdu_vunmarshal(pdu, offset, fmt, ap); in pdu_unmarshal() 1120 pdu->s->transport->push_and_notify(pdu); in pdu_complete() 2296 pdu->s->transport->init_out_iov_from_pdu(pdu, &iov, &niov, size + skip); in v9fs_init_qiov_from_pdu() 2298 pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov, size + skip); in v9fs_init_qiov_from_pdu() 4273 assert(!s->transport); in v9fs_device_realize_common() 4274 s->transport = t; in v9fs_device_realize_common()
|
/qemu/docs/system/devices/ |
H A D | usb.rst | 116 bulk-only transport protocol used by 99% of USB sticks. This 148 Bulk-only transport storage device. This presents the guest with the 149 same USB bulk-only transport protocol interface as ``usb-storage``, but
|
/qemu/docs/system/ |
H A D | qemu-block-drivers.rst.inc | 179 (when your filesystem or transport medium does not support holes). 694 *TYPE* specifies the transport type used to connect to gluster 695 management daemon (glusterd). Valid transport types are 696 tcp and unix. In the URI form, if a transport type isn't specified, 701 If transport type is unix, then *HOST* field should not be specified. 706 and if not specified, it defaults to port 24007. If the transport type is unix,
|
H A D | device-url-syntax.rst.inc | 91 Domain Sockets transport protocols.
|
/qemu/docs/interop/ |
H A D | vhost-user.json | 34 # @vsock: virtio vsock transport
|
H A D | qmp-spec.rst | 251 When a client connects to QGA over a transport lacking proper
|
/qemu/docs/system/i386/ |
H A D | microvm.rst | 63 ``virtio-mmio`` as its transport, a microvm-based VM needs to be run
|
/qemu/docs/system/riscv/ |
H A D | virt.rst | 22 * 8 virtio-mmio transport devices
|
/qemu/qapi/ |
H A D | virtio.json | 485 # @transports: List of transport features of the virtio device
|
H A D | migration.json | 1563 # The migration stream transport mechanisms. 1606 # @transport: The migration stream transport mechanism 1611 'base': { 'transport' : 'MigrationAddressType'}, 1612 'discriminator': 'transport',
|
/qemu/docs/system/arm/ |
H A D | virt.rst | 45 - 32 virtio-mmio transport devices
|