Searched full:schema (Results 26 – 50 of 90) sorted by relevance
1234
/qemu/scripts/qapi/ |
H A D | commands.py | 31 from .schema import ( 309 ' * Schema-defined QAPI/QMP commands', None, __doc__, 346 def visit_begin(self, schema: QAPISchema) -> None: 414 def gen_commands(schema: QAPISchema, 419 schema.visit(vis)
|
H A D | visit.py | 25 from .schema import ( 337 prefix, 'qapi-visit', ' * Schema-defined QAPI visitors', 422 def gen_visit(schema: QAPISchema, 427 schema.visit(vis)
|
H A D | gen.py | 34 from .schema import ( 75 # schema in specialised schemas. Don't overwrite the files that are 76 # already generated for the main schema.
|
/qemu/tests/ |
H A D | Makefile.include | 6 …@echo " $(MAKE) check Run block, qapi-schema, unit, softfloat, qtest and decode… 15 @echo " $(MAKE) check-qapi-schema Run QAPI schema tests"
|
/qemu/docs/devel/ |
H A D | writing-monitor-commands.rst | 30 schema module. 107 The first step is defining the command in the appropriate QAPI schema 159 schema file to the following:: 173 Notice the new 'data' member in the schema. It specifies an argument 200 2. The C implementation signature must follow the schema's argument ordering, 449 its members correspond to the type's specification in the schema 453 3. As specified in the schema file, the function returns a
|
/qemu/tests/qapi-schema/ |
H A D | doc-bad-event-arg.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
H A D | features-too-many.err | 2 features-too-many.json:2: Maximum of 64 schema features is permitted
|
H A D | doc-bad-feature.json | 1 # Features listed in the doc comment must exist in the actual schema
|
H A D | doc-bad-enum-member.json | 1 # Members listed in the doc comment must exist in the actual schema
|
H A D | doc-bad-command-arg.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
H A D | doc-bad-alternate-member.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
H A D | sub-sub-module.json | 4 # Sub-module of sub-module include/sub-module.json of qapi-schema-test.json
|
H A D | doc-bad-union-member.json | 1 # Arguments listed in the doc comment must exist in the actual schema
|
/qemu/docs/interop/ |
H A D | qemu-qmp-ref.rst | 9 .. qapi-doc:: qapi/qapi-schema.json
|
H A D | qemu-ga-ref.rst | 4 .. qapi-doc:: qga/qapi-schema.json
|
H A D | qemu-storage-daemon-qmp-ref.rst | 7 .. qapi-doc:: storage-daemon/qapi/qapi-schema.json
|
/qemu/tests/qapi-schema/include/ |
H A D | sub-module.json | 4 # Sub-module of ../qapi-schema-test.json
|
/qemu/storage-daemon/qapi/ |
H A D | meson.build | 3 input: [ files('qapi-schema.json') ],
|
/qemu/docs/sphinx/ |
H A D | qapidoc_legacy.py | 15 in QAPI schema files, and insert them all into the current document. 19 pathname of the schema file to process, relative to the source tree. 52 """A QAPI schema visitor which generates docutils/Sphinx nodes 343 etc). We do this by calling 'visit' on the schema entity, which
|
/qemu/scripts/ |
H A D | git.orderfile | 25 # qapi schema
|
/qemu/include/qapi/ |
H A D | type-helpers.h | 5 * in the QAPI schema.
|
/qemu/docs/system/i386/ |
H A D | amd-memory-encryption.rst | 178 QAPI schema for the sev-snp-guest object. 181 by the corresponding parameters documented in the QAPI schema for the 206 by the corresponding parameters documented in the QAPI schema for the 223 schema for the 'sev-snp-guest' object)::
|
/qemu/qapi/ |
H A D | qapi-type-helpers.c | 5 * in the QAPI schema.
|
/qemu/docs/system/ |
H A D | managed-startup.rst | 32 - ``query-qmp-schema``
|
/qemu/docs/devel/testing/ |
H A D | main.rst | 48 which includes QAPI schema tests, unit tests, QTests and some iotests. 154 QAPI schema tests 157 The QAPI schema tests validate the QAPI parser used by QMP, by feeding 161 The input/output data is managed under the ``tests/qapi-schema`` directory. 170 Consider adding a new QAPI schema test when you are making a change on the QAPI 175 ``$EDITOR tests/qapi-schema/foo.{json,out,err,exit}``. 179 ``qapi-schema += foo.json``
|
1234