Home
last modified time | relevance | path

Searched refs:ucl_object_lookup_len (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/libucl/tests/
H A Dtest_generate.c173 test = ucl_object_lookup_len (obj, "key160", 5); in main()
179 test = ucl_object_lookup_len (obj, "key160", 5); in main()
198 assert (ucl_object_lookup_len (obj, "key18\0\0", 7) == cur); in main()
200 assert (ucl_object_lookup_len (obj, "key18\0\1", 7) == NULL); in main()
/freebsd/contrib/libucl/src/
H A Ducl_util.c1918 parent = ucl_object_lookup_len (ctx, data, len);
1941 if (!replace && ucl_object_lookup_len (target, cur->key, cur->keylen)) {
2479 found = __DECONST (ucl_object_t *, ucl_object_lookup_len (top, key, keylen));
2506 found = ucl_object_lookup_len (top, key, keylen);
2647 ucl_object_lookup_len (const ucl_object_t *obj, const char *key, size_t klen) function
2670 return ucl_object_lookup_len (obj, key, strlen (key));
2685 ret = ucl_object_lookup_len (obj, key, strlen (key));
2697 ret = ucl_object_lookup_len (obj, nk, strlen (nk));
2951 o = ucl_object_lookup_len (top, c, p - c);
3891 return ucl_object_lookup_len (comments, (const char *)&srch,
[all …]
H A Ducl_emitter.c384 comment = ucl_object_lookup_len (ctx->comments, (const char *)&obj, in ucl_emitter_common_elt()
H A Ducl_schema.c698 res = ucl_object_lookup_len (cur, refc, len); in ucl_schema_resolve_ref_component()
/freebsd/contrib/libucl/include/
H A Ducl.h710 UCL_EXTERN const ucl_object_t* ucl_object_lookup_len (const ucl_object_t *obj,
712 #define ucl_object_find_keyl ucl_object_lookup_len
H A Ducl++.h420 return Ucl (ucl_object_lookup_len (obj.get(), in lookup()