Home
last modified time | relevance | path

Searched refs:ucl_object_key (Results 1 – 7 of 7) sorted by relevance

/src/contrib/libucl/src/
H A Ducl_schema.c93 if (regexec (&reg, ucl_object_key (elt), 0, NULL, 0) == 0) { in ucl_schema_test_pattern()
99 if (regexec (&reg, ucl_object_key (obj), 0, NULL, 0) == 0) in ucl_schema_test_pattern()
122 elt = ucl_object_lookup (obj, ucl_object_key (cur)); in ucl_schema_validate_dependencies()
131 ucl_object_tostring (cur_dep), ucl_object_key (cur)); in ucl_schema_validate_dependencies()
163 strcmp (ucl_object_key (elt), "properties") == 0) { in ucl_schema_validate_object()
166 found = ucl_object_lookup (obj, ucl_object_key (prop)); in ucl_schema_validate_object()
173 else if (strcmp (ucl_object_key (elt), "additionalProperties") == 0) { in ucl_schema_validate_object()
191 else if (strcmp (ucl_object_key (elt), "required") == 0) { in ucl_schema_validate_object()
202 else if (strcmp (ucl_object_key (elt), "minProperties") == 0 in ucl_schema_validate_object()
212 else if (strcmp (ucl_object_key (elt), "maxProperties") == 0 in ucl_schema_validate_object()
[all …]
H A Ducl_util.c3559 ucl_object_key (const ucl_object_t *obj) function
3750 it2 = ucl_object_lookup (o2, ucl_object_key (it1));
/src/usr.sbin/iovctl/
H A Dparse.c254 key = ucl_object_key(obj); in parse_device_config()
317 key = ucl_object_key(obj); in parse_config_file()
367 key = ucl_object_key(obj); in find_pf_device()
419 key = ucl_object_key(obj); in find_device()
/src/usr.sbin/pkg/
H A Dconfig.c235 key = ucl_object_key(cur); in config_parse()
289 evkey = ucl_object_key(tmp); in config_parse()
382 reponame = ucl_object_key(o); in parse_repo()
395 key = ucl_object_key(cur); in parse_repo()
459 key = ucl_object_key(cur); in parse_repo_file()
H A Dpkg.c361 key = ucl_object_key(cur); in parse_fingerprint()
/src/contrib/libucl/include/
H A Ducl.h740 UCL_EXTERN const char* ucl_object_key (const ucl_object_t *obj);
/src/contrib/libucl/lua/
H A Dlua_ucl.c172 ucl_object_lua_push_element (L, ucl_object_key (cur), cur, flags); in ucl_object_lua_push_object()