]> Git Repo - qemu.git/blob - tests/qapi-schema/returns-whitelist.json
hw/intc/arm_gicv3_its: Fix the VM termination in vm_change_state_handler()
[qemu.git] / tests / qapi-schema / returns-whitelist.json
1 # we enforce that 'returns' be a dict or array of dict unless whitelisted
2
3 { 'pragma': { 'returns-whitelist': [
4     'human-monitor-command', 'query-tpm-models', 'guest-get-time' ] } }
5
6 { 'command': 'human-monitor-command',
7   'data': {'command-line': 'str', '*cpu-index': 'int'},
8   'returns': 'str' }
9 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
10 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
11 { 'command': 'guest-get-time',
12   'returns': 'int' }
13
14 { 'command': 'no-way-this-will-get-whitelisted',
15   'returns': [ 'int' ] }
This page took 0.025968 seconds and 4 git commands to generate.