| /qemu/docs/system/ |
| A D | multi-process.rst | 26 - It launches the remote process and passes one of the 34 - QEMU can enter remote process mode by using the "remote" machine 37 - The orchestrator creates a "remote-object" with details about 43 - Example command-line for the remote process is as follows: 46 -machine x-remote \ 50 -object x-remote-object,id=robj1,devid=lsi0,fd=4, 54 - Since parts of the RAM are shared between QEMU & remote process, a 60 in the remote process. A "socket" sub-option specifies the other end of 62 and should be the same as the "id" specified for the remote PCI device
|
| A D | device-url-syntax.rst.inc | 76 QEMU supports SSH (Secure Shell) access to remote disks. 143 Optional username for authentication to the remote server. 146 Optional password for authentication to the remote server. 149 Address of the remote server. 152 Path on the remote server, including any query string. 161 remote server. This value may optionally have the suffix 'T', 'G', 167 Whether to verify the remote server's certificate when connecting 178 the time that CURL waits for a response from the remote server to 185 Example: boot from a remote Fedora 20 live ISO image 193 Example: boot from a remote Fedora 20 cloud image using a local
|
| A D | gdb.rst | 6 QEMU supports working with gdb via gdb's remote-connection facility 33 (gdb) target remote localhost:1234 104 to them. First, you must connect with the ``extended-remote`` 105 protocol, not ``remote``:: 107 (gdb) target extended-remote localhost:1234 155 (gdb) target remote /tmp/gdb-socket
|
| A D | target-avr.rst | 43 target remote :1234
|
| /qemu/net/ |
| A D | dgram.c | 282 SocketAddress *remote, in net_dgram_mcast_init() argument 290 if (remote->type != SOCKET_ADDRESS_TYPE_INET) { in net_dgram_mcast_init() 296 if (convert_host_port(saddr, remote->u.inet.host, remote->u.inet.port, in net_dgram_mcast_init() 426 SocketAddress *remote, *local; in net_init_dgram() local 434 remote = netdev->u.dgram.remote; in net_init_dgram() 438 if (remote && remote->type == SOCKET_ADDRESS_TYPE_INET) { in net_init_dgram() 458 if (remote) { in net_init_dgram() 463 if (remote->type != local->type) { in net_init_dgram() 533 remote->u.q_unix.path); in net_init_dgram() 536 remote->u.q_unix.path); in net_init_dgram() [all …]
|
| /qemu/tests/qemu-iotests/ |
| A D | 207.out | 45 Job failed: remote host key fingerprint 'md5:HASH' does not match host_key_check 'md5:wrong' 62 Job failed: remote host key fingerprint 'sha1:HASH' does not match host_key_check 'sha1:wrong' 79 Job failed: remote host key fingerprint 'sha256:HASH' does not match host_key_check 'sha256:wrong' 96 Job failed: failed to open remote file '/this/is/not/an/existing/path': SFTP server: No such file (…
|
| /qemu/docs/devel/ |
| A D | multi-process.rst | 72 referred to as remote devices. 244 remote process QMP monitor 260 Each remote device emulated in a remote process on the host is 264 be the same id as used in the remote process. 270 can be used to add a device emulated in a remote process 273 QEMU management of remote processes 313 all types of remote PCI devices. 395 remote device's *vmstate*; that will be handled by the remote process 398 QEMU remote device operation 402 process proxy by sending messages to the remote process. [all …]
|
| /qemu/hw/remote/ |
| A D | trace-events | 3 …error(int cmd, int size, int nfds) "send command %d size %d, %d file descriptors to remote process" 4 …(int cmd, int size, int nfds) "failed to receive %d size %d, %d file descriptors to remote process"
|
| A D | meson.build | 6 remote_ss.add(when: 'CONFIG_MULTIPROCESS', if_true: files('remote-obj.c'))
|
| /qemu/docs/tools/ |
| A D | qemu-nbd.rst | 22 - As a client to query exports of a remote NBD server. 160 a remote NBD server. This enables list mode, and is incompatible 178 to connect to the remote server, the :option:`--tls-hostname` option should 179 be used to set the officially expected hostname of the remote NBD 267 Query a remote server to see details about what export(s) it is 274 --tls-creds tls0 -L -b remote.example.com
|
| /qemu/tests/tcg/multiarch/gdbstub/ |
| A D | registers.py | 85 remote = gdb.execute("maint print remote-registers", False, True) 86 r_regs = remote.split("\n")
|
| /qemu/chardev/ |
| A D | char-udp.c | 178 udp->remote = addr; in qemu_chr_parse_udp() 199 SocketAddress *remote_addr = socket_address_flatten(udp->remote); in qmp_chardev_open_udp()
|
| /qemu/qapi/ |
| A D | misc-target.json | 453 # @remote-domain: remote domain for interdomain ports 455 # @target: remote port ID, or virq/pirq number 467 'remote-domain': 'str',
|
| A D | net.json | 679 # @remote: remote address 685 # If remote address is present and it's a multicast address, local 686 # address is optional. Otherwise local address is required and remote 693 # remote local okay? 709 '*remote': 'SocketAddress' } }
|
| /qemu/docs/interop/ |
| A D | dbus-display.rst | 5 dbus``), to allow out-of-process UIs, remote protocol servers or other
|
| /qemu/tests/unit/ |
| A D | test-qga.c | 21 struct sockaddr_un remote; in connect_qga() local 26 remote.sun_family = AF_UNIX; in connect_qga() 28 strcpy(remote.sun_path, path); in connect_qga() 29 len = strlen(remote.sun_path) + sizeof(remote.sun_family); in connect_qga() 30 ret = connect(s, (struct sockaddr *)&remote, len); in connect_qga()
|
| A D | test-yank.c | 104 .remote = &(SocketAddressLegacy) { in char_change_test()
|
| /qemu/hw/ |
| A D | meson.build | 58 subdir('remote') subdir
|
| A D | Kconfig | 31 source remote/Kconfig
|
| /qemu/include/qemu/ |
| A D | sockets.h | 76 int socket_dgram(SocketAddress *remote, SocketAddress *local, Error **errp);
|
| /qemu/hw/pci-host/ |
| A D | meson.build | 13 pci_ss.add(when: 'CONFIG_REMOTE_PCIHOST', if_true: files('remote.c'))
|
| /qemu/docs/config/ |
| A D | q35-virtio-graphical.cfg | 219 # If you're running the guest on a remote, potentially 227 # enable remote access instead.
|
| A D | mach-virt-graphical.cfg | 270 # If you're running the guest on a remote, potentially 278 # enable remote access instead.
|
| A D | q35-emulated.cfg | 260 # If you're running the guest on a remote, potentially 268 # enable remote access instead.
|
| /qemu/ |
| A D | qemu-options.hx | 2841 …"-netdev dgram,id=str,remote.type=inet,remote.host=maddr,remote.port=port[,local.type=inet,local.h… 2842 …"-netdev dgram,id=str,remote.type=inet,remote.host=maddr,remote.port=port[,local.type=fd,local.str… 3395 ``-netdev dgram,id=str,remote.type=inet,remote.host=maddr,remote.port=port[,local.type=inet,local.h… 3398 ``remote.host=maddr,remote.port=port`` 3411 -netdev dgram,id=net0,remote.type=inet,remote.host=224.0.0.1,remote.port=1234 3415 -netdev dgram,id=net0,remote.type=inet,remote.host=224.0.0.1,remote.port=1234 3419 -netdev dgram,id=net0,remote.type=inet,remote.host=224.0.0.1,remote.port=1234 3421 ``-netdev dgram,id=str,remote.type=inet,remote.host=maddr,remote.port=port[,local.type=fd,local.str… 3424 ``remote.host=maddr,remote.port=port`` 3430 …id=str,local.type=inet,local.host=addr,local.port=port[,remote.type=inet,remote.host=addr,remote.p… [all …]
|