Home
last modified time | relevance | path

Searched refs:protocol (Results 1 – 25 of 126) sorted by relevance

123456

/qemu/tests/qemu-iotests/
H A D266.out7 …", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vpc", "node-name": "protocol-node"}}
12 …, "arguments": {"job-id": "job0", "options": {"driver": "vpc", "file": "protocol-node", "size": 67…
29 …", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vpc", "node-name": "protocol-node"}}
51 …", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vpc", "node-name": "protocol-node"}}
72 …", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vpc", "node-name": "protocol-node"}}
77 …, "arguments": {"job-id": "job0", "options": {"driver": "vpc", "file": "protocol-node", "force-siz…
92 …", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vpc", "node-name": "protocol-node"}}
97 …, "arguments": {"job-id": "job0", "options": {"driver": "vpc", "file": "protocol-node", "size": 0}…
114 …", "arguments": {"driver": "file", "filename": "TEST_DIR/PID-t.vpc", "node-name": "protocol-node"}}
119 …, "arguments": {"job-id": "job0", "options": {"driver": "vpc", "file": "protocol-node", "size": 13…
[all …]
H A D117.out6 'arguments': { 'node-name': 'protocol',
13 'file': 'protocol' } }
H A D308.out11 'node-name': 'node-protocol',
19 'file': 'node-protocol'
126 'node-name': 'node-protocol',
153 'node-name': 'node-protocol',
/qemu/ui/
H A Dui-hmp-cmds.c263 const char *protocol = qdict_get_str(qdict, "protocol"); in hmp_set_password() local
280 opts.protocol = qapi_enum_parse(&DisplayProtocol_lookup, protocol, in hmp_set_password()
286 if (opts.protocol == DISPLAY_PROTOCOL_VNC) { in hmp_set_password()
298 const char *protocol = qdict_get_str(qdict, "protocol"); in hmp_expire_password() local
307 opts.protocol = qapi_enum_parse(&DisplayProtocol_lookup, protocol, in hmp_expire_password()
313 if (opts.protocol == DISPLAY_PROTOCOL_VNC) { in hmp_expire_password()
467 const char *protocol = qdict_get_str(qdict, "protocol"); in hmp_client_migrate_info() local
475 qmp_client_migrate_info(protocol, hostname, in hmp_client_migrate_info()
H A Dui-qmp-cmds.c36 if (opts->protocol == DISPLAY_PROTOCOL_SPICE) { in qmp_set_password()
44 assert(opts->protocol == DISPLAY_PROTOCOL_VNC); in qmp_set_password()
92 if (opts->protocol == DISPLAY_PROTOCOL_SPICE) { in qmp_expire_password()
98 assert(opts->protocol == DISPLAY_PROTOCOL_VNC); in qmp_expire_password()
187 void qmp_client_migrate_info(const char *protocol, const char *hostname, in qmp_client_migrate_info() argument
193 if (strcmp(protocol, "spice") == 0) { in qmp_client_migrate_info()
/qemu/crypto/
H A Dtls-cipher-suites.c58 gnutls_protocol_t protocol; in qcrypto_tls_cipher_suites_get_data() local
70 NULL, NULL, NULL, &protocol); in qcrypto_tls_cipher_suites_get_data()
75 version = gnutls_protocol_get_name(protocol); in qcrypto_tls_cipher_suites_get_data()
/qemu/hw/i386/
H A Dx86-common.c632 uint16_t protocol; in x86_load_linux() local
670 protocol = lduw_p(header + 0x206); in x86_load_linux()
740 protocol = 0; in x86_load_linux()
748 } else if (protocol < 0x202) { in x86_load_linux()
761 if (protocol >= 0x20c && in x86_load_linux()
780 } else if (protocol >= 0x203) { in x86_load_linux()
796 if (protocol >= 0x202) { in x86_load_linux()
833 if (protocol >= 0x200) { in x86_load_linux()
837 if (protocol >= 0x201) { in x86_load_linux()
849 if (protocol < 0x200) { in x86_load_linux()
[all …]
/qemu/docs/interop/
H A Dvhost-user-gpu.rst15 The vhost-user-gpu protocol is aiming at sharing the rendering result
18 server protocol, if you consider QEMU as the display server and the
24 The protocol is sent over a UNIX domain stream socket, since it uses
197 Get the supported protocol features bitmask.
204 Enable protocol features using a bitmask.
278 This message requires the ``VHOST_USER_GPU_PROTOCOL_F_EDID`` protocol
288 This message requires the ``VHOST_USER_GPU_PROTOCOL_F_DMABUF2`` protocol
H A Dvnc-ledstate-pseudo-encoding.rst8 is the protocol used in VNC as reference link below:
18 extension to VNC protocol to deal with setting LED state.
24 LED state extensions to the protocol.
H A Dnbd.txt1 QEMU supports the NBD protocol, and has an internal NBD client (see
6 The NBD protocol is specified here:
10 protocol realization in QEMU.
15 NBD protocol specification, and also defines an additional metadata
H A Dvhost-user.rst19 This protocol is aiming to complement the ``ioctl`` interface used to
26 The protocol defines 2 sides of the communication, *front-end* and
396 The section on ``REPLY_ACK`` protocol extension.
419 Any protocol extensions are gated by protocol feature bits, which
518 require this protocol feature.
543 ``VHOST_USER_PROTOCOL_F_LOG_SHMFD`` protocol feature.
1013 protocol feature.
1298 in the ancillary data. Note that if the protocol features
1314 is set in queried protocol features by
1651 When the ``VHOST_USER_PROTOCOL_F_SHARED_OBJECT`` protocol
[all …]
H A Dpr-helper.rst4 Persistent reservation helper protocol
17 This document describes the socket protocol used between QEMU's
77 The sense data is always sent to keep the protocol simple, even though
83 If the protocol is violated, the helper closes the socket.
H A Dbarrier.rst1 Barrier client protocol
8 This document briefly describes the protocol as we implement it.
38 ``minor`` = protocol major version number supported by server
40 ``major`` = protocol minor version number supported by server
52 ``minor`` = protocol major version number supported by client
54 ``major`` = protocol minor version number supported by client
/qemu/monitor/
H A Dqmp-cmds.c118 void qmp_add_client(const char *protocol, const char *fdname, in qmp_add_client() argument
149 if (!strcmp(protocol, protocol_table[i].name)) { in qmp_add_client()
159 protocol, errp)) { in qmp_add_client()
/qemu/hw/block/dataplane/
H A Dxen-block.c55 int protocol; member
428 switch (dataplane->protocol) { in xen_block_send_response()
478 switch (dataplane->protocol) { in xen_block_get_request()
741 unsigned int protocol, in xen_block_dataplane_start() argument
756 dataplane->protocol = protocol; in xen_block_dataplane_start()
759 switch (dataplane->protocol) { in xen_block_dataplane_start()
776 error_setg(errp, "unknown protocol %u", dataplane->protocol); in xen_block_dataplane_start()
795 switch (dataplane->protocol) { in xen_block_dataplane_start()
H A Dxen-block.h26 unsigned int protocol,
/qemu/docs/devel/
H A Dqtest.rst11 clock stepping), with a special purpose "qtest" protocol. Refer to
12 :ref:`qtest-protocol` for more details of the protocol.
79 .. _qtest-protocol:
/qemu/docs/
H A Drdma.txt144 protocol now, consisting of infiniband SEND messages.
186 which is described by a formal protocol. Each SEND message has a
196 in a single message without any need to change the protocol itself
226 After ram block exchange is completed, we have two protocol-level
278 its own protocol information during the migration process.
288 Current version of the protocol is version #1.
336 These two functions are very short and simply use the protocol
355 listed above and issue another "QEMU File" protocol command,
364 Then, using the aforementioned protocol, they exchange a
371 Main memory is not migrated with the aforementioned protocol,
[all …]
/qemu/include/qemu/
H A Dsockets.h16 int qemu_socket(int domain, int type, int protocol);
31 int qemu_socketpair(int domain, int type, int protocol, int sv[2]);
/qemu/qapi/
H A Ddump.json70 # @protocol: the filename or file descriptor of the vmcore. The
73 # 1. file: the protocol starts with "file:", and the following
75 # 2. fd: the protocol starts with "fd:", and the following string
104 'data': { 'paging': 'bool', 'protocol': 'str', '*detach': 'bool',
/qemu/docs/system/
H A Dbarrier.rst13 protocol into QEMU.
19 This protocol is enabled by adding an input-barrier object to QEMU.
/qemu/util/
H A Doslib-win32.c321 int qemu_socketpair(int domain, int type, int protocol, int sv[2]) in qemu_socketpair() argument
355 listener = socket(domain, type, protocol); in qemu_socketpair()
374 client = socket(domain, type, protocol); in qemu_socketpair()
565 int qemu_socket_wrap(int domain, int type, int protocol) in qemu_socket_wrap() argument
570 s = socket(domain, type, protocol); in qemu_socket_wrap()
/qemu/docs/system/devices/
H A Dusb-u2f.rst9 protocol. In case of a USB U2F security key, it is a USB HID device
10 that implements the U2F protocol.
46 provides a complete implementation of the U2F protocol device part for
/qemu/hw/block/
H A Dxen-block.c182 unsigned int order, nr_ring_ref, *ring_ref, event_channel, protocol; in xen_block_connect() local
245 protocol = BLKIF_PROTOCOL_X86_32; in xen_block_connect()
247 protocol = BLKIF_PROTOCOL_NATIVE; in xen_block_connect()
251 protocol = BLKIF_PROTOCOL_X86_32; in xen_block_connect()
253 protocol = BLKIF_PROTOCOL_X86_64; in xen_block_connect()
255 protocol = BLKIF_PROTOCOL_NATIVE; in xen_block_connect()
262 event_channel, protocol, errp); in xen_block_connect()
/qemu/python/qemu/qmp/
H A D__init__.py29 from .protocol import (

123456