Home
last modified time | relevance | path

Searched refs:clients (Results 1 – 25 of 41) sorted by relevance

12

/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/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()
H A Dcan_host.c40 QTAILQ_HEAD(, CanBusClientState) clients;
/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/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
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
273 that clients provide a certificate and validate them. Verification
276 authenticate clients. For example, the VNC server can use SASL to
[all …]
H A Dvnc-security.rst43 the password all clients will be rejected.
101 authentication to provide two layers of authentication for clients.
H A Dauthz.rst12 finer grained authorization on clients post-authentication.
96 clients. This authorization driver provides a list mechanism for granting
/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
566 # @clients: a list of @VncClientInfo of all currently connected
567 # clients
634 # @clients: A list of @VncClientInfo of all currently connected
635 # clients. The list can be empty, for obvious reasons.
650 'clients' : ['VncClientInfo'],
[all …]
/qemu/tests/keys/
H A DREADME6 ONLY in situations that cannot be compromised by external network clients.
/qemu/ui/
H A Dvnc.c370 QTAILQ_FOREACH(client, &vd->clients, next) { in qmp_query_client_list()
753 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_abort_display_jobs()
758 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_abort_display_jobs()
761 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_abort_display_jobs()
796 if (QTAILQ_EMPTY(&vd->clients)) { in vnc_update_server_surface()
857 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_dpy_switch()
1037 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_dpy_cursor_define()
1339 if (QTAILQ_EMPTY(&vs->vd->clients)) { in vnc_disconnect_finish()
2983 QTAILQ_FOREACH(vs, &vd->clients, next) { in vnc_refresh_lossy_rect()
3209 if (QTAILQ_EMPTY(&vd->clients)) { in vnc_refresh()
[all …]
H A Dvnc.h145 QTAILQ_HEAD(, VncState) clients;
/qemu/include/exec/
H A Dram_addr.h413 uint8_t clients = tcg_enabled() ? DIRTY_CLIENTS_ALL : DIRTY_CLIENTS_NOCODE; in cpu_physical_memory_set_dirty_lebitmap() local
416 clients &= ~(1 << DIRTY_MEMORY_MIGRATION); in cpu_physical_memory_set_dirty_lebitmap()
438 TARGET_PAGE_SIZE * hpratio, clients); in cpu_physical_memory_set_dirty_lebitmap()
/qemu/docs/interop/
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/nbd/
H A Dserver.c95 QTAILQ_HEAD(, NBDClient) clients;
537 QTAILQ_INSERT_TAIL(&client->exp->clients, client, next); in nbd_negotiate_handle_export_name()
753 QTAILQ_INSERT_TAIL(&client->exp->clients, client, next); in nbd_negotiate_handle_info()
1570 QTAILQ_REMOVE(&client->exp->clients, client, next); in nbd_client_put()
1671 QTAILQ_FOREACH(client, &exp->clients, next) { in blk_aio_attached()
1698 QTAILQ_FOREACH(client, &exp->clients, next) { in nbd_drained_begin()
1712 QTAILQ_FOREACH(client, &exp->clients, next) { in nbd_drained_end()
1734 QTAILQ_FOREACH(client, &exp->clients, next) { in nbd_drained_poll()
1837 QTAILQ_INIT(&exp->clients); in nbd_export_create()
1981 QTAILQ_FOREACH_SAFE(client, &exp->clients, next, next) { in nbd_export_request_shutdown()
[all …]
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/docs/devel/migration/
H A Dpostcopy.rst275 The vhost-user code in QEMU supports clients that have Postcopy support,
282 fault addresses in the clients address space to be converted back to
290 a) Some way to make QEMU ignorant of the addresses in the clients
295 Retro-fitting postcopy to existing clients is possible:
/qemu/net/
H A Dvmnet-bridged.m14 #include "clients.h"
/qemu/tests/docker/dockerfiles/
H A Dcentos9.docker89 openssh-clients \
H A Dfedora-win64-cross.docker44 openssh-clients \
H A Dfedora.docker98 openssh-clients \
/qemu/docs/tools/
H A Dqemu-nbd.rst141 Allow up to *NUM* clients to share the device (default
230 and allow clients with a specific X.509 certificate to connect to
H A Dqemu-storage-daemon.rst177 when the pid file is written and clients may begin connecting.
188 Launch the daemon with QMP monitor socket ``qmp.sock`` so clients can execute
/qemu/scripts/coverity-scan/
H A Dcoverity-scan.docker109 openssh-clients \
/qemu/qga/
H A Dqapi-schema.json47 # This is used by clients talking to the guest agent over the wire to
59 # clients may opt to ignore all data until a sentinel value is
62 # Similarly, clients should also precede this *request* with a 0xFF
81 # This is used by clients talking to the guest agent over the wire to
94 # For clients that fetch responses line by line and convert them to
99 # Such clients should also precede this command with a 0xFF byte to

12