Lines Matching full:schema
10 from .schema import QAPISchema
20 schema: QAPISchema,
27 Generate code for the given schema into the target directory.
29 :param schema: The primary QAPI schema object.
43 schema: QAPISchema,
50 Generate C code for the given schema into the target directory.
52 :param schema_file: The primary QAPI schema file.
60 gen_types(schema, output_dir, prefix, builtins)
61 gen_features(schema, output_dir, prefix)
62 gen_visit(schema, output_dir, prefix, builtins)
63 gen_commands(schema, output_dir, prefix, gen_tracing)
64 gen_events(schema, output_dir, prefix)
65 gen_introspect(schema, output_dir, prefix, unmask)