Home
last modified time | relevance | path

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

/freebsd/contrib/libucl/src/
H A Ducl_schema.c93 if (regexec(&reg, ucl_object_key(elt), 0, NULL, 0) == 0) { in ucl_schema_test_pattern()
100 if (regexec(&reg, ucl_object_key(obj), 0, NULL, 0) == 0) in ucl_schema_test_pattern()
123 elt = ucl_object_lookup(obj, ucl_object_key(cur)); in ucl_schema_validate_dependencies()
132 ucl_object_tostring(cur_dep), ucl_object_key(cur)); in ucl_schema_validate_dependencies()
164 strcmp(ucl_object_key(elt), "properties") == 0) { in ucl_schema_validate_object()
167 found = ucl_object_lookup(obj, ucl_object_key(prop)); in ucl_schema_validate_object()
174 else if (strcmp(ucl_object_key(elt), "additionalProperties") == 0) { in ucl_schema_validate_object()
192 else if (strcmp(ucl_object_key(elt), "required") == 0) { in ucl_schema_validate_object()
203 …else if (strcmp(ucl_object_key(elt), "minProperties") == 0 && ucl_object_toint_safe(elt, &minmax))… in ucl_schema_validate_object()
212 …else if (strcmp(ucl_object_key(elt), "maxProperties") == 0 && ucl_object_toint_safe(elt, &minmax))… in ucl_schema_validate_object()
[all …]
H A Ducl_util.c3575 ucl_object_key(const ucl_object_t *obj) function
3769 it2 = ucl_object_lookup(o2, ucl_object_key(it1));
/freebsd/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()
/freebsd/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()
/freebsd/contrib/libucl/include/
H A Ducl.h753 UCL_EXTERN const char *ucl_object_key(const ucl_object_t *obj);
/freebsd/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()