Home
last modified time | relevance | path

Searched full:clients (Results 1 – 25 of 106) sorted by relevance

12345

/qemu/tests/qemu-iotests/tests/
H A Dnbd-multiconn115 clients = [nbd.NBD() for _ in range(3)]
116 for c in clients:
120 initial_data = clients[0].pread(1024 * 1024, 0)
124 clients[1].pwrite(updated_data, 0)
125 clients[2].flush()
126 current_data = clients[0].pread(1024 * 1024, 0)
131 clients[i].shutdown()
/qemu/docs/system/
H A Dtls.rst29 clients on a private intranet, there is no need to use a commercial
35 server and exposing it directly to remote browser clients. In such a
75 should be copied to all servers and clients wishing to utilize TLS
89 clients when connecting. The hostname / IP address that the client
96 permanently assigned IP address(es), and clients are likely to use them
100 for validation is now deprecated. Instead modern TLS clients will
185 The subject alt name extension data is not required for clients, so
189 clients are not in fact HTTP clients, setting this key purpose is still
246 used for network services and clients. It requires specifying the
270 should be performed. This defaults to enabled, meaning clients will
[all …]
/qemu/docs/specs/
H A Divshmem-spec.rst145 - sends connect notifications for the new client to the other clients
147 - sends connect notifications for the other clients to the new client,
155 notifications to the other clients.
160 its connected clients, the clients can elect to continue. They can
162 notification on disconnect, and no new clients can connect. There is
163 no way for the clients to connect to a restarted server. The device
167 production. It assumes all clients use the same number of interrupt
192 2. The client's ID. This is unique among all clients of this server.
199 4. Connect notifications for existing other clients, if any. This is
/qemu/include/qemu/
H A Dfifo8.h18 * Create a FIFO of the specified capacity. Clients should call fifo8_destroy()
38 * Clients are responsible for checking for fullness using fifo8_is_full().
49 * Clients are responsible for checking the space left in the FIFO using
59 * Clients are responsible for checking for emptyness using fifo8_is_empty().
69 * Peek the data byte at the current head of the FIFO. Clients are responsible
125 * Clients are responsible for checking the availability of requested data
152 * Clients are responsible for checking the availability of requested data
H A Dfifo32.h29 * Create a FIFO of the specified size. Clients should call fifo32_destroy()
85 * is full. Clients are responsible for checking for fullness using
106 * is full. Clients are responsible for checking the space left in the FIFO
125 * is empty. Clients are responsible for checking for emptiness using
H A Dco-shared-resource.h35 * @total: total amount of some resource to be shared between clients
43 * clients has been deallocated.
/qemu/net/can/
H A Dcan_core.c75 QTAILQ_HEAD(, CanBusClientState) clients;
82 QTAILQ_INIT(&bus->clients); in can_bus_instance_init()
88 QTAILQ_INSERT_TAIL(&bus->clients, client, next); in can_bus_insert_client()
99 QTAILQ_REMOVE(&bus->clients, client, next); in can_bus_remove_client()
114 QTAILQ_FOREACH(peer, &bus->clients, next) { in can_bus_client_send()
/qemu/docs/interop/
H A Dqmp-spec.rst139 is recommended for clients that accept capability ``oob``.
159 so that requests and responses can match. Clients should drop all the
193 - The ``desc`` member is a human-readable error message. Clients should
343 Clients should use the ``qmp_capabilities`` command to enable capabilities
356 capabilities array (in the `Server Greeting`_). Thus, Clients can check
362 strictness of the Server catches wrong assumptions of Clients about
363 the Server's schema. Clients can assume that, when such validation
367 However, Clients must not assume any particular:
371 new keys and Clients should be able to ignore them
H A Dvirtio-balloon-stats.rst8 Before querying the available stats, clients first have to enable polling.
24 To retrieve those stats, clients have to query the guest-stats property,
/qemu/contrib/ivshmem-server/
H A Divshmem-server.h14 * mode. The ivshmem clients (qemu or ivshmem-client) connect to this
17 * clients using the SCM_RIGHTS cmsg message. Therefore, each client is
45 * vectors are advertised to all connected clients through the connected
106 * Close connections to all clients, close the unix socket and the
/qemu/block/export/
H A Dfuse.c395 * Let clients look up files. Always return ENOENT because we only
404 * Let clients get file attributes (i.e., stat() the file).
489 * Let clients set file attributes. Only resizing and changing
565 * Let clients open a file (i.e., the exported image).
591 * Clients will expect short reads at EOF, so we have to limit in fuse_read()
642 * Clients will expect short writes at EOF, so we have to limit in fuse_write()
672 * Let clients perform various fallocate() operations.
773 * Let clients fsync the exported image.
797 * Let clients inquire allocation status.
/qemu/qapi/
H A Dblock-export.json223 # @writable: Whether clients should be able to write to the device via
273 # - hide: Just hide export from new clients, leave existing
274 # connections as is. Remove export after all clients are
277 # - soft: Hide export from new clients, answer with ESHUTDOWN for
278 # all further requests from existing clients.
358 # @writable: True if clients should be able to write to the export
H A Dui.json26 # clients.
28 # @keep: maintain existing clients
30 # @fail: fail the command if clients are connected
32 # @disconnect: disconnect existing clients
50 # @connected: How to handle existing clients when changing the
564 # @clients: a list of @VncClientInfo of all currently connected
565 # clients
572 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']},
632 # @clients: A list of @VncClientInfo of all currently connected
633 # clients. The list can be empty, for obvious reasons.
[all …]
/qemu/include/block/
H A Dexport.h45 * Start to disconnect all clients and drop other references held
61 * both from the owner (qemu-nbd or the monitor) and clients connected to
/qemu/docs/devel/migration/
H A Dpostcopy.rst276 The vhost-user code in QEMU supports clients that have Postcopy support,
283 fault addresses in the clients address space to be converted back to
291 a) Some way to make QEMU ignorant of the addresses in the clients
296 Retro-fitting postcopy to existing clients is possible:
/qemu/tests/keys/
H A DREADME6 ONLY in situations that cannot be compromised by external network clients.
/qemu/ui/
H A Dvnc.c368 QTAILQ_FOREACH(client, &vd->clients, next) { in qmp_query_client_list()
387 info->clients = qmp_query_client_list(vd); in qmp_query_vnc()
554 info->clients = qmp_query_client_list(vd); in qmp_query_vnc_servers()
751 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_abort_display_jobs()
756 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_abort_display_jobs()
759 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_abort_display_jobs()
794 if (QTAILQ_EMPTY(&vd->clients)) { in vnc_update_server_surface()
855 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_dpy_switch()
1035 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_dpy_cursor_define()
1336 QTAILQ_REMOVE(&vs->vd->clients, vs, next); in vnc_disconnect_finish()
[all …]
/qemu/net/
H A Dvhost-vdpa-stub.c12 #include "clients.h"
H A Dvhost-user-stub.c12 #include "clients.h"
H A Dvmnet_int.h14 #include "clients.h"
/qemu/python/qemu/qmp/
H A Derror.py5 to be used directly by clients when they would like to handle particular
/qemu/nbd/
H A Dtrace-events65 nbd_blk_aio_attached(const char *name, void *ctx) "Export %s: Attaching clients to AIO context %p"
66 nbd_blk_aio_detach(const char *name, void *ctx) "Export %s: Detaching clients from AIO context %p"
/qemu/include/system/
H A Diothread.h54 * iothreads will not be seen by monitor clients when query using
/qemu/docs/devel/
H A Dqapi-code-gen.rst693 that previously resulted in an error). QMP clients may still need to
710 The feature strings are exposed to clients in introspection, as
1184 Clients of a Client JSON Protocol commonly need to figure out what
1293 extensions. The "members" array is in no particular order; clients
1354 resemble the element type; however, clients should examine member
1369 "members" array is in no particular order; clients must search the
1396 the names of built-in types. Clients should examine member
1408 Clients send commands with argument data, and receive command
1414 alternate of that type; making mandatory arguments optional. Clients
1430 Clients are expected to ignore the ones they don't know.
[all …]
/qemu/scripts/qemu-guest-agent/fsfreeze-hook.d/
H A Dmysql-flush.sh.sample5 # from the other clients until the filesystem is thawed.

12345