/qemu/qapi/ |
H A D | pragma.json | 31 'query-tpm-models', 32 'query-tpm-types', 82 'ACPISlotType', # query-acpi-ospm-status 86 'BlockDeviceInfo', # query-block 87 'BlockDeviceStats', # query-blockstats 88 'BlockDeviceTimedStats', # query-blockstats 90 'BlockInfo', # query-block 92 'BlockdevDriver', # blockdev-add, query-blockstats, ... 100 'NetdevTapOptions', # netdev_add, query-netdev, -netdev 103 'PciBusInfo', # query-pci [all …]
|
H A D | tpm.json | 26 # @query-tpm-models: 39 { 'command': 'query-tpm-models', 'returns': ['TpmModel'], 57 # @query-tpm-types: 70 { 'command': 'query-tpm-types', 'returns': ['TpmType'], 165 # @query-tpm: 189 { 'command': 'query-tpm', 'returns': ['TPMInfo'],
|
H A D | machine.json | 100 # @query-cpus-fast: 137 { 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] } 191 # present when query-machines argument @compat-props is true. 210 # @query-machines: 248 { 'command': 'query-machines', 267 # @query-current-machine: 275 { 'command': 'query-current-machine', 'returns': 'CurrentMachineParams' } 290 # @query-target: 298 { 'command': 'query-target', 'returns': 'QemuTargetInfo' } 315 # @query-uuid: [all …]
|
H A D | misc-i386.json | 29 # An enumeration of SEV state information used during @query-sev. 127 # @query-sev: 146 { 'command': 'query-sev', 'returns': 'SevInfo' } 160 # @query-sev-launch-measure: 182 { 'command': 'query-sev-launch-measure', 'returns': 'SevLaunchMeasureInfo' } 211 # @query-sev-capabilities: 231 { 'command': 'query-sev-capabilities', 'returns': 'SevCapability' } 273 # @query-sev-attestation-report: 300 { 'command': 'query-sev-attestation-report', 344 # @query-sgx: [all …]
|
H A D | rocker.json | 25 # @query-rocker: 40 { 'command': 'query-rocker', 95 # @query-rocker-ports: 114 { 'command': 'query-rocker-ports', 234 # @query-rocker-of-dpa-flows: 260 { 'command': 'query-rocker-of-dpa-flows', 309 # @query-rocker-of-dpa-groups: 340 { 'command': 'query-rocker-of-dpa-groups',
|
H A D | stats.json | 90 # query-stats. 115 # The arguments to the query-stats command; specifies a target for 119 # @target: the kind of objects to query. Note that each possible 181 # @query-stats: 194 { 'command': 'query-stats', 255 # @query-stats-schemas: 259 # @provider: a provider to restrict the query to. 275 { 'command': 'query-stats-schemas',
|
H A D | replay.json | 47 # @query-replay: 62 { 'command': 'query-replay', 73 # current instruction count can be observed with @query-replay. 109 # with the @query-replay command.
|
H A D | virtio.json | 25 # @x-query-virtio: 64 { 'command': 'x-query-virtio', 192 # @x-query-virtio-status: 438 { 'command': 'x-query-virtio-status', 554 # @x-query-virtio-queue-status: 632 { 'command': 'x-query-virtio-queue-status', 689 # @x-query-virtio-vhost-queue-status: 753 { 'command': 'x-query-virtio-vhost-queue-status', 835 # @x-query-virtio-queue-element: 942 { 'command': 'x-query-virtio-queue-element',
|
H A D | dump.json | 129 # The result format for 'query-dump'. 145 # @query-dump: 159 { 'command': 'query-dump', 'returns': 'DumpQueryResult' } 196 # @query-dump-guest-memory-capability: 211 { 'command': 'query-dump-guest-memory-capability',
|
H A D | machine-s390x.json | 98 # The result of a CPU polarization query. 109 # @query-s390x-cpu-polarization: 119 { 'command': 'query-s390x-cpu-polarization', 'returns': 'CpuPolarizationInfo',
|
H A D | control.json | 92 # @query-version: 115 { 'command': 'query-version', 'returns': 'VersionInfo', 130 # @query-commands: 155 { 'command': 'query-commands', 'returns': ['CommandInfo'],
|
H A D | misc-arm.json | 31 # @query-gic-capabilities: 49 { 'command': 'query-gic-capabilities', 'returns': ['GICCapability'] }
|
H A D | cryptodev.json | 95 # @query-cryptodev: 103 { 'command': 'query-cryptodev', 'returns': ['QCryptodevInfo']}
|
H A D | misc.json | 55 # @query-name: 68 { 'command': 'query-name', 'returns': 'NameInfo', 'allow-preconfig': true } 102 # @query-iothreads: 129 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'], 414 # @query-fdsets: 455 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] } 513 # @query-command-line-options: 548 {'command': 'query-command-line-options',
|
/qemu/chardev/ |
H A D | wctablet.c | 73 uint8_t query[100]; member 98 memmove(tablet->query, tablet->query + count, tablet->query_index); in wctablet_shift_input() 99 tablet->query[tablet->query_index] = 0; in wctablet_shift_input() 218 for (i = 0; i < len && tablet->query_index < sizeof(tablet->query) - 1; i++) { in wctablet_chr_write() 219 tablet->query[tablet->query_index++] = buf[i]; in wctablet_chr_write() 221 tablet->query[tablet->query_index] = 0; in wctablet_chr_write() 223 while (tablet->query_index > 0 && (tablet->query[0] == '@' || in wctablet_chr_write() 224 tablet->query[0] == '\r' || in wctablet_chr_write() 225 tablet->query[0] == '\n')) { in wctablet_chr_write() 232 if (strncmp((char *)tablet->query, "~#", 2) == 0) { in wctablet_chr_write() [all …]
|
/qemu/docs/devel/ |
H A D | s390-cpu-topology.rst | 21 Additions to query-cpus-fast 24 The command query-cpus-fast allows querying the topology tree and 29 { "execute": "query-cpus-fast" } 156 QAPI query command: query-s390x-cpu-polarization 159 The query command query-s390x-cpu-polarization returns the current 165 { "execute": "query-s390x-cpu-polarization" }
|
H A D | writing-monitor-commands.rst | 369 command "x-query-registers". This returns a formatted dump of the 379 For this example we will write the query-option-roms command, which 404 Now let's define the query-option-roms command:: 407 # @query-option-roms: 415 { 'command': 'query-option-roms', 467 { "execute": "query-option-rom" } 480 Here's the HMP counterpart of the query-option-roms command:: 543 a query command that report aspects of QEMU's internal state that are 547 ``x-query-roms`` in qapi/machine.json. It has no parameters and 551 # @x-query-roms: [all …]
|
/qemu/docs/system/ |
H A D | cpu-hotplug.rst | 28 (QEMU) query-hotpluggable-cpus 30 "execute": "query-hotpluggable-cpus", 58 (4) The ``query-hotpluggable-cpus`` command returns an object for CPUs 81 (5) Optionally, run QMP ``query-cpus-fast`` for some details about the 84 (QEMU) query-cpus-fast 87 "execute": "query-cpus-fast",
|
H A D | managed-startup.rst | 17 This paused state is typically used by users to query machine state and/or 32 - ``query-qmp-schema`` 33 - ``query-commands`` 34 - ``query-status``
|
/qemu/hw/ufs/ |
H A D | trace-events | 31 ufs_err_query_flag_not_readable(uint8_t idn) "query flag idn 0x%"PRIx8" is denied to read" 32 ufs_err_query_flag_not_writable(uint8_t idn) "query flag idn 0x%"PRIx8" is denied to write" 33 ufs_err_query_attr_not_readable(uint8_t idn) "query attribute idn 0x%"PRIx8" is denied to read" 34 ufs_err_query_attr_not_writable(uint8_t idn) "query attribute idn 0x%"PRIx8" is denied to write" 35 ufs_err_query_invalid_opcode(uint8_t opcode) "query request has invalid opcode. opcode: 0x%"PRIx8"" 36 ufs_err_query_invalid_idn(uint8_t opcode, uint8_t idn) "query request has invalid idn. opcode: 0x%"… 37 ufs_err_query_invalid_index(uint8_t opcode, uint8_t index) "query request has invalid index. opcode…
|
/qemu/tests/qemu-iotests/tests/ |
H A D | inactive-node-nbd.out | 13 {"execute": "query-block-exports", "arguments": {}} 17 {"execute": "query-block-exports", "arguments": {}} 27 {"execute": "query-block-exports", "arguments": {}} 31 {"execute": "query-block-exports", "arguments": {}} 41 {"execute": "query-block-exports", "arguments": {}} 45 {"execute": "query-block-exports", "arguments": {}} 58 {"execute": "query-block-exports", "arguments": {}} 62 {"execute": "query-block-exports", "arguments": {}} 73 {"execute": "query-block-exports", "arguments": {}} 77 {"execute": "query-block-exports", "arguments": {}} [all …]
|
/qemu/tests/qemu-iotests/ |
H A D | 307.out | 7 {"execute": "query-block-exports", "arguments": {}} 13 {"execute": "query-block-exports", "arguments": {}} 36 {"execute": "query-block-exports", "arguments": {}} 42 {"execute": "query-block-exports", "arguments": {}} 74 {"execute": "query-block-exports", "arguments": {}} 110 {"execute": "query-block-exports", "arguments": {}} 132 {"execute": "query-block-exports", "arguments": {}}
|
H A D | 109.out | 23 {"execute":"query-block-jobs"} 39 {"execute":"query-block-jobs"} 74 {"execute":"query-block-jobs"} 90 {"execute":"query-block-jobs"} 125 {"execute":"query-block-jobs"} 141 {"execute":"query-block-jobs"} 176 {"execute":"query-block-jobs"} 192 {"execute":"query-block-jobs"} 227 {"execute":"query-block-jobs"} 243 {"execute":"query-block-jobs"} [all …]
|
/qemu/tests/qapi-schema/ |
H A D | returns-bad-type.json | 4 'human-monitor-command', 'query-tpm-models', 'guest-get-time' ] } } 10 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
|
/qemu/nbd/ |
H A D | server.c | 865 const char *query) in nbd_meta_empty_or_pattern() argument 867 if (!*query) { in nbd_meta_empty_or_pattern() 871 if (strcmp(query, pattern) == 0) { in nbd_meta_empty_or_pattern() 901 const char *query) in nbd_meta_base_query() argument 903 if (!nbd_strshift(&query, "base:")) { in nbd_meta_base_query() 908 if (nbd_meta_empty_or_pattern(client, "allocation", query)) { in nbd_meta_base_query() 922 const char *query) in nbd_meta_qemu_query() argument 926 if (!nbd_strshift(&query, "qemu:")) { in nbd_meta_qemu_query() 931 if (!*query) { in nbd_meta_qemu_query() 942 if (strcmp(query, "allocation-depth") == 0) { in nbd_meta_qemu_query() [all …]
|