/qemu/qga/ |
A D | meson.build | 32 'qga-qapi-commands.c', 33 'qga-qapi-commands.h', 38 'qga-qapi-init-commands.c', 39 'qga-qapi-init-commands.h', 65 'commands.c', 69 'commands-common-ssh.c' 74 'commands-win32.c', 77 'commands-windows-ssh.c' 82 'commands-posix.c', 83 'commands-posix-ssh.c', [all …]
|
/qemu/docs/system/ |
A D | monitor.rst | 6 The QEMU monitor is used to give complex commands to the QEMU emulator. 20 The following commands are available: 22 .. hxtool-doc:: hmp-commands.hx 24 .. hxtool-doc:: hmp-commands-info.hx
|
A D | pr-manager.rst | 8 machines to send persistent reservation SCSI commands. However, 9 the operating system restricts sending these commands to unprivileged 17 PERSISTENT RESERVE IN commands are passed to the persistent reservation 18 manager object; other commands are processed by QEMU as usual. 28 forwards the commands to an external privileged helper program 30 reservation commands to devices for which QEMU has a file descriptor,
|
A D | managed-startup.rst | 27 preconfig state, QEMU only allows a limited set of commands over the 28 QMP monitor, where the commands do not depend on an initialized 33 - ``query-commands``
|
/qemu/qapi/ |
A D | meson.build | 80 'qapi-commands.h', 'qapi-commands.c', 81 'qapi-init-commands.h', 'qapi-init-commands.c', 106 'qapi-commands-@0@.c'.format(module), 107 'qapi-commands-@0@.h'.format(module), 108 'qapi-commands-@0@.trace-events'.format(module),
|
A D | qapi-schema.json | 6 # This document describes all commands currently supported by QMP. 10 # commands (the manpage, QEMU's manual, etc) can and should be 13 # QMP has two types of commands: regular and query commands. Regular 14 # commands usually change the Virtual Machine's state someway, while 15 # query commands just return information. The sections below are
|
A D | control.json | 27 # will fail once the monitor is accepting other commands. (see 130 # @query-commands: 132 # Return a list of supported QMP commands by this server 134 # Returns: A list of @CommandInfo for all supported commands 155 { 'command': 'query-commands', 'returns': ['CommandInfo'],
|
/qemu/tests/ |
A D | meson.build | 9 'test-qapi-commands-sub-sub-module.c', 10 'test-qapi-commands-sub-sub-module.h', 11 'test-qapi-commands.c', 12 'test-qapi-commands.h', 19 'test-qapi-init-commands.c', 20 'test-qapi-init-commands.h',
|
/qemu/docs/interop/ |
A D | qmp-spec.rst | 17 the protocol; details of the commands and data structures can 120 The actual commands are documented in the :doc:`qemu-qmp-ref`. 130 the server reads and queues commands as they arrive. It executes 131 commands from the queue one after the other. Commands executed 135 commands. 138 to pass ``id`` with out-of-band commands. Passing it with all commands 141 If the client sends in-band commands faster than the server can 145 To ensure commands to be executed out-of-band get read and executed, 146 the client should have at most eight in-band commands in flight. 148 Only a few commands support out-of-band execution. The ones that do [all …]
|
A D | pr-helper.rst | 15 "PERSISTENT RESERVE IN" and "PERSISTENT RESERVE OUT" commands. 45 It is invalid to send multiple commands concurrently on the same 47 helper and send multiple commands to the helper for one or more
|
/qemu/hw/dma/ |
A D | i82374.c | 53 uint8_t commands[8]; member 62 VMSTATE_UINT8_ARRAY(commands, I82374State, 8), 139 memset(s->commands, 0, sizeof(s->commands)); in i82374_realize()
|
/qemu/docs/devel/ |
A D | writing-monitor-commands.rst | 1 How to write monitor commands 4 This document is a step-by-step guide on how to write new QMP commands using 5 the QAPI framework and HMP commands. 14 New commands may be implemented in QMP only. New HMP commands should be 16 equivalent QMP command, but HMP convenience commands built from QMP 20 unstructured text`_ section for further guidance on commands that 282 time HMP commands are simple wrappers. 314 we should add it to the hmp-commands.hx file:: 337 Writing more complex commands 518 hmp-commands-info.hx, not hmp-commands.hx. The entry for the "info [all …]
|
A D | qapi-code-gen.rst | 495 Some example commands:: 614 marked ``.coroutine = true`` in hmp-commands.hx. 1461 introspect the commands. 1737 Code generated for commands 1746 ``$(prefix)qapi-commands.c`` 1750 ``$(prefix)qapi-commands.h`` 1753 ``$(prefix)qapi-commands.trace-events`` 1756 ``$(prefix)qapi-init-commands.h`` 1759 ``$(prefix)qapi-init-commands.c`` 1876 SUBDIR/$(prefix)qapi-commands-SUBMODULE.h [all …]
|
A D | zoned-storage.rst | 16 to zones. It supports ZBD-specific I/O commands that can be used by a host to 21 regular and drive-managed ZBD devices. ZBD-specific I/O commands are not 32 The block layer APIs support commands needed for zoned storage devices,
|
/qemu/tests/image-fuzzer/ |
A D | runner.py | 140 self.commands = [['qemu-img', 'check', '-f', 'qcow2', '$test_img'], 154 self.commands.append( 207 commands = self.commands 209 commands = input_commands 215 for item in commands:
|
/qemu/scripts/qapi/ |
A D | commands.py | 316 commands = self._module_basename('qapi-commands', name) 329 commands=commands, visit=visit)) 331 if self._gen_tracing and commands != 'qapi-commands': 336 nm=c_name(commands, protect=False)))
|
/qemu/docs/ |
A D | memory-hotplug.txt | 35 Two monitor commands are used to hotplug memory: 41 For example, the following commands add another 1GB to the guest 56 into the guest from the previous section with the following commands: 84 Two monitor commands are used to hot unplug memory: 90 backend is "mem1", the following commands tries to remove it.
|
/qemu/tests/include/ |
A D | meson.build | 3 'test-qapi-commands-sub-module.c', 4 'test-qapi-commands-sub-module.h',
|
/qemu/monitor/ |
A D | qmp-cmds-control.c | 81 if (mon->commands == &qmp_commands) { in qmp_qmp_capabilities() 92 mon->commands = &qmp_commands; in qmp_qmp_capabilities() 131 qmp_for_each_command(mon->commands, query_commands_cb, &list); in qmp_query_commands()
|
/qemu/python/qemu/utils/ |
A D | qemu_ga_client.py | 275 commands = [m.replace('_cmd_', '') for m in dir() if '_cmd_' in m] variable 283 if cmd not in commands: 285 print('Available commands: ' + ', '.join(commands)) 311 parser.add_argument('command', choices=commands)
|
/qemu/docs/specs/ |
A D | virt-ctlr.rst | 20 This register allows the kernel to send the commands to the hypervisor. 21 The implemented commands are part of the power control feature and
|
A D | vmw_pvscsi-spec.rst | 19 commands. The rings area is used to transfer data descriptors and SCSI 20 commands from VM to hypervisor and to transfer messages produced by 29 are registers to issue device commands (with optional short data),
|
A D | acpi_hest_ghes.rst | 78 (5) QEMU generates N ADD_POINTER commands, which patch addresses in the 82 (6) QEMU generates N ADD_POINTER commands, which patch addresses in the 86 (7) QEMU generates N ADD_POINTER commands for the firmware, which patch
|
/qemu/docs/system/i386/ |
A D | amd-memory-encryption.rst | 16 inside the AMD-SP provides commands to support a common VM lifecycle. This 17 includes commands for launching, snapshotting, migrating and debugging the 18 encrypted guest. These SEV commands can be issued via KVM_MEMORY_ENCRYPT_OP 32 ``MEMORY_ENCRYPT_OP`` ioctl provides commands to encrypt the images: ``LAUNCH_START``, 33 ``LAUNCH_UPDATE_DATA``, ``LAUNCH_MEASURE`` and ``LAUNCH_FINISH``. These four commands 167 ``MEMORY_ENCRYPT_OP`` ioctl provides commands to encrypt the images: 169 three commands communicate with SEV-SNP firmware to generate a fresh memory 171 more details on the SEV-SNP firmware interfaces used by these commands please 235 then a hypervisor can use the DEBUG_DECRYPT and DEBUG_ENCRYPT commands to access
|
/qemu/tests/docker/ |
A D | docker.py | 76 commands = [] 79 commands += [["podman"]] 81 commands += [["docker"], ["sudo", "-n", "docker"]] 82 for cmd in commands: 91 commands_txt = "\n".join([" " + " ".join(x) for x in commands])
|