Home
last modified time | relevance | path

Searched refs:schema (Results 1 – 25 of 62) sorted by relevance

123

/freebsd-12.1/sys/dev/pci/
H A Dpci_iov_schema.c163 nvlist_set_error(schema, ENOMEM); in pci_iov_schema_add_bool()
172 nvlist_move_nvlist(schema, name, entry); in pci_iov_schema_add_bool()
183 nvlist_set_error(schema, ENOMEM); in pci_iov_schema_add_string()
192 nvlist_move_nvlist(schema, name, entry); in pci_iov_schema_add_string()
203 nvlist_set_error(schema, ENOMEM); in pci_iov_schema_int()
212 nvlist_move_nvlist(schema, name, entry); in pci_iov_schema_int()
255 nvlist_set_error(schema, ENOMEM); in pci_iov_schema_add_unicast_mac()
264 nvlist_move_nvlist(schema, name, entry); in pci_iov_schema_add_unicast_mac()
519 if (!nvlist_exists_nvlist(schema, name)) in pci_iov_validate_device_schema()
521 dev_schema = nvlist_get_nvlist(schema, name); in pci_iov_validate_device_schema()
[all …]
H A Dpci_iov.c121 nvlist_t *schema; in pci_iov_attach_method() local
128 schema = NULL; in pci_iov_attach_method()
155 if (schema == NULL) { in pci_iov_attach_method()
163 iov->iov_schema = schema; in pci_iov_attach_method()
180 nvlist_destroy(schema); in pci_iov_attach_method()
234 if (schema == NULL) in pci_iov_build_schema()
240 if (nvlist_error(schema) != 0) in pci_iov_build_schema()
243 return (schema); in pci_iov_build_schema()
246 nvlist_destroy(schema); in pci_iov_build_schema()
259 nvlist_set_error(schema, ENOMEM); in pci_iov_build_pf_schema()
[all …]
H A Dschema_private.h32 int pci_iov_validate_schema(const nvlist_t *schema);
/freebsd-12.1/usr.sbin/iovctl/
H A Diovctl.c59 nvlist_t *schema; in get_schema() local
63 arg.schema = NULL; in get_schema()
71 if (arg.schema == NULL) in get_schema()
83 schema = nvlist_unpack(arg.schema, arg.len, NV_FLAG_IGNORE_CASE); in get_schema()
84 if (schema == NULL) in get_schema()
87 free(arg.schema); in get_schema()
88 return (schema); in get_schema()
286 schema = get_schema(fd); in config_action()
294 nvlist_destroy(schema); in config_action()
382 nvlist_t *schema; in print_schema() local
[all …]
H A Dvalidate.c170 const nvlist_t *subsystem, *schema, *config; in validate_subsystem() local
176 schema = nvlist_get_nvlist(device_schema, subsystem_name); in validate_subsystem()
179 while ((name = nvlist_next(schema, &type, &cookie)) != NULL) { in validate_subsystem()
180 config = nvlist_get_nvlist(schema, name); in validate_subsystem()
196 validate_device(const nvlist_t *device, const nvlist_t *schema, in validate_device() argument
200 validate_subsystem(device, schema, DRIVER_CONFIG_NAME, config_name); in validate_device()
201 validate_subsystem(device, schema, IOV_CONFIG_NAME, config_name); in validate_device()
225 validate_config(nvlist_t *config, const nvlist_t *schema, const regex_t *vf_pat) in validate_config() argument
237 validate_device(pf, nvlist_get_nvlist(schema, PF_CONFIG_NAME), in validate_config()
242 vf_schema = nvlist_get_nvlist(schema, VF_SCHEMA_NAME); in validate_config()
H A Dparse.c172 const nvlist_t *schema) in add_config() argument
176 type = nvlist_get_string(schema, TYPE_SCHEMA_NAME); in add_config()
203 const char *subsystem, const nvlist_t *schema) in parse_device_config() argument
215 driver_schema = nvlist_get_nvlist(schema, DRIVER_CONFIG_NAME); in parse_device_config()
216 iov_schema = nvlist_get_nvlist(schema, IOV_CONFIG_NAME); in parse_device_config()
256 parse_config_file(const char *filename, const nvlist_t *schema) in parse_config_file() argument
288 pf_schema = nvlist_get_nvlist(schema, PF_CONFIG_NAME); in parse_config_file()
289 vf_schema = nvlist_get_nvlist(schema, VF_SCHEMA_NAME); in parse_config_file()
323 validate_config(config, schema, &vf_pat); in parse_config_file()
/freebsd-12.1/contrib/libucl/src/
H A Ducl_schema.c876 elt = ucl_object_lookup (schema, "maxValues"); in ucl_schema_validate_values()
926 if (schema->type != UCL_OBJECT) { in ucl_schema_validate()
929 ucl_object_type_to_string (schema->type)); in ucl_schema_validate()
948 elt = ucl_object_lookup (schema, "enum"); in ucl_schema_validate()
955 elt = ucl_object_lookup (schema, "allOf"); in ucl_schema_validate()
966 elt = ucl_object_lookup (schema, "anyOf"); in ucl_schema_validate()
984 elt = ucl_object_lookup (schema, "oneOf"); in ucl_schema_validate()
1002 elt = ucl_object_lookup (schema, "not"); in ucl_schema_validate()
1013 elt = ucl_object_lookup (schema, "$ref"); in ucl_schema_validate()
1028 elt = ucl_object_lookup (schema, "type"); in ucl_schema_validate()
[all …]
/freebsd-12.1/sys/sys/
H A Diov_schema.h39 void pci_iov_schema_add_bool(nvlist_t *schema, const char *name,
41 void pci_iov_schema_add_string(nvlist_t *schema, const char *name,
43 void pci_iov_schema_add_uint8(nvlist_t *schema, const char *name,
45 void pci_iov_schema_add_uint16(nvlist_t *schema, const char *name,
47 void pci_iov_schema_add_uint32(nvlist_t *schema, const char *name,
49 void pci_iov_schema_add_uint64(nvlist_t *schema, const char *name,
51 void pci_iov_schema_add_unicast_mac(nvlist_t *schema, const char *name,
H A Diov.h162 void *schema; member
/freebsd-12.1/contrib/libucl/tests/
H A Dtest_schema.c65 perform_test (const ucl_object_t *schema, const ucl_object_t *obj, in perform_test() argument
80 match = ucl_object_validate (schema, data, err); in perform_test()
87 fprintf (stdout, "%s\n", ucl_object_emit (schema, UCL_EMIT_CONFIG)); in perform_test()
99 const ucl_object_t *schema, *tests, *description, *test; in perform_tests() local
106 schema = ucl_object_lookup (obj, "schema"); in perform_tests()
110 if (schema == NULL || tests == NULL || description == NULL) { in perform_tests()
118 if (!perform_test (schema, test, &err)) { in perform_tests()
H A DMakefile.am1 EXTRA_DIST = $(TESTS) basic schema generate.res \
6 schema.test \
H A Dschema.test7 for i in ${TEST_DIR}/schema/*.json ; do
/freebsd-12.1/contrib/libucl/lua/
H A Dlua_ucl.c699 ucl_object_t *schema; in lua_ucl_parser_validate() local
707 schema = ucl_object_lua_import (L, 2); in lua_ucl_parser_validate()
709 if (schema == NULL) { in lua_ucl_parser_validate()
729 schema = ucl_parser_get_object (schema_parser); in lua_ucl_parser_validate()
739 if (!ucl_object_validate (schema, parser->top_obj, &err)) { in lua_ucl_parser_validate()
749 ucl_object_unref (schema); in lua_ucl_parser_validate()
868 ucl_object_t *obj, *schema, *ext_refs = NULL; in lua_ucl_object_validate() local
875 schema = lua_ucl_object_get (L, 2); in lua_ucl_object_validate()
877 if (schema && obj && ucl_object_type (schema) == UCL_OBJECT) { in lua_ucl_object_validate()
905 schema_elt = schema; in lua_ucl_object_validate()
[all …]
/freebsd-12.1/contrib/libucl/utils/
H A Ducl-tool.c54 const char *schema = NULL; in main() local
78 schema = optarg; in main()
135 if (schema != NULL) { in main()
140 if (!ucl_parser_add_file(schema_parser, schema)) { in main()
/freebsd-12.1/contrib/amd/
H A Dldap-id.ms22 A directory (X.500 and LDAPv3) schema for Berkely automounter
30 This memo describes a directory (LDAP or X.500) schema for storing
31 amd (Berkely-style automounter) mount info maps. The schema is currently
41 relation between this schema and the automount schema elements in [HOWARD]
44 the intended usage of this schema differs from that of [HOWARD] in many
50 Directory servers implementing this schema SHOULD maintain the
54 schema MAY use the modifyTimestamp information to set the ttl for
286 Information Service", draft-howard-nis-schema-??.txt, Internet
H A Dldap-id.txt12 A directory (X.500 and LDAPv3) schema for Berkely automounter
17 This memo describes a directory (LDAP or X.500) schema for storing amd (Berkely-
18 style automounter) mount info maps. The schema is currently beeing supported by
26 schema and the automount schema elements in [HOWARD] are mostly superficial. The
28 different syntax for mount maps. Furthermore the intended usage of this schema
33 Directory servers implementing this schema SHOULD maintain the modifyTimestamp
36 wishing to use the amdMap schema MAY use the modifyTimestamp information to set
319 Information Service", draft-howard-nis-schema-??.txt, Internet
H A DREADME.ldap13 ldap.schema:
15 This is the most current schema.
19 This is an experimental schema for amd mount maps in LDAP. Since
23 The schema is written in the form of an internet-draft but it has
/freebsd-12.1/contrib/libucl/python/tests/
H A Dtest_validation.py16 def perform_test(schema, data, valid, description): argument
19 self.assertTrue(ucl.validate(schema, data), msg)
22 ucl.validate(schema, data)
/freebsd-12.1/contrib/libucl/python/src/
H A Duclmodule.c260 ucl_object_t *data, *schema; in ucl_validate() local
269 schema = _iterate_python(schemaobj); in ucl_validate()
270 if (!schema) in ucl_validate()
278 r = ucl_object_validate (schema, data, &err); in ucl_validate()
279 ucl_object_unref (schema); in ucl_validate()
/freebsd-12.1/contrib/libucl/
H A DChangeLog.md34 - Fixed serious bugs in schema and arrays iteration
55 - Add schema validation to lua API
56 - Add support for external references to schema validation
H A DREADME.md347schema that is used for json: [json schema v4](http://json-schema.org). UCL supports the full set …
/freebsd-12.1/contrib/file/magic/Magdir/
H A Ddataone16 >&0 regex (onedcx/v)[0-9].[0-9]+ http://ns.dataone.org/metadata/schema/onedcx/v1.0
23 >&0 regex (mercury/terms/v)[0-9].[0-9] http://purl.org/ornl/schema/mercury/terms/v1.0
H A Dvxl14 >0 leshort >0 schema version no %d
/freebsd-12.1/contrib/wpa/src/utils/
H A Dxml_libxml2.c60 xmlSchemaPtr schema; in xml_validate() local
83 schema = xmlSchemaParse(pctx); in xml_validate()
86 vctx = xmlSchemaNewValidCtxt(schema); in xml_validate()
94 xmlSchemaFree(schema); in xml_validate()
/freebsd-12.1/contrib/subversion/
H A DMakefile.in41 SCHEMA_DIR = subversion/svn/schema
761 schema: mkdir-init schema-rng schema-dtd schema-xsd
763 schema-rng: $(SCHEMAS_RNG)
764 schema-dtd: $(SCHEMAS_DTD)
765 schema-xsd: $(SCHEMAS_XSD)
769 schema-clean:

123