Searched refs:ucl_iterate_object (Results 1 – 8 of 8) sorted by relevance
| /trueos/contrib/libucl/src/ |
| HD | ucl_schema.c | 145 while ((elt = ucl_iterate_object (obj, &iter, true)) != NULL) { in ucl_schema_test_pattern() 169 while (ret && (cur = ucl_iterate_object (deps, &iter, true)) != NULL) { in ucl_schema_validate_dependencies() 175 while (ret && (cur_dep = ucl_iterate_object (cur, &piter, true)) != NULL) { in ucl_schema_validate_dependencies() 208 while (ret && (elt = ucl_iterate_object (schema, &iter, true)) != NULL) { in ucl_schema_validate_object() 212 while (ret && (prop = ucl_iterate_object (elt, &piter, true)) != NULL) { in ucl_schema_validate_object() 270 while (ret && (prop = ucl_iterate_object (elt, &piter, true)) != NULL) { in ucl_schema_validate_object() 289 while ((elt = ucl_iterate_object (obj, &iter, true)) != NULL) { in ucl_schema_validate_object() 295 while ((pelt = ucl_iterate_object (pat, &piter, true)) != NULL) { in ucl_schema_validate_object() 322 while ((elt = ucl_iterate_object (required, &iter, true)) != NULL) { in ucl_schema_validate_object() 348 while (ret && (elt = ucl_iterate_object (schema, &iter, true)) != NULL) { in ucl_schema_validate_number() [all …]
|
| HD | ucl_util.c | 1219 while ((cur = ucl_iterate_object (elt, &it, true)) != NULL) { 1340 ucl_iterate_object (const ucl_object_t *obj, ucl_object_iter_t *iter, bool expand_values) function 1653 while ((ret = ucl_iterate_object (top, &it, true)) != NULL) { 1925 while ((it1 = ucl_iterate_object (o1, &iter, true)) != NULL) {
|
| /trueos/contrib/libucl/tests/ |
| HD | test_schema.c | 111 while ((test = ucl_iterate_object (tests, &iter, true)) != NULL) { in perform_tests() 148 while ((elt = ucl_iterate_object (obj, &iter, true)) != NULL) { in main()
|
| /trueos/contrib/libucl/utils/ |
| HD | objdump.c | 44 while ((obj = ucl_iterate_object (tmp, &it, false))) { in ucl_obj_dump() 56 while ((cur = ucl_iterate_object (obj, &it_obj, true))) { in ucl_obj_dump()
|
| /trueos/contrib/libucl/doc/ |
| HD | api.md | 37 - [ucl_iterate_object](#ucl_iterate_object) 380 …te over an object, an array or a key with multiple values there is a function `ucl_iterate_object`. 382 ## ucl_iterate_object section in Iteration functions 384 const ucl_object_t* ucl_iterate_object (const ucl_object_t *obj, 388 …ucl_iterate_object` returns the next UCL object in the compound object `obj` or `NULL` if all obje… 395 while ((obj = ucl_iterate_object (top, &it, true))) { 398 while ((cur = ucl_iterate_object (obj, &it_obj, false))) {
|
| /trueos/usr.sbin/pkg/ |
| HD | config.c | 215 while ((cur = ucl_iterate_object(obj, &it, true))) { in config_parse() 268 while ((seq = ucl_iterate_object(cur, &itseq, true))) { in config_parse() 325 while ((cur = ucl_iterate_object(obj, &it, true))) { in parse_repo_file()
|
| HD | pkg.c | 279 while ((cur = ucl_iterate_object(obj, &it, true))) { in parse_fingerprint()
|
| /trueos/contrib/libucl/include/ |
| HD | ucl.h | 627 UCL_EXTERN const ucl_object_t* ucl_iterate_object (const ucl_object_t *obj,
|