Searched refs:hashlin (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/libucl/src/
H A Ducl_hash.h54 void ucl_hash_destroy (ucl_hash_t* hashlin, ucl_hash_free_func func);
60 bool ucl_hash_insert (ucl_hash_t* hashlin, const ucl_object_t *obj, const char *key,
66 void ucl_hash_replace (ucl_hash_t* hashlin, const ucl_object_t *old,
72 void ucl_hash_delete (ucl_hash_t* hashlin, const ucl_object_t *obj);
77 const ucl_object_t* ucl_hash_search (ucl_hash_t* hashlin, const char *key,
83 * @param hashlin hash
88 const void* ucl_hash_iterate2 (ucl_hash_t *hashlin, ucl_hash_iter_t *iter, int *ep);
98 bool ucl_hash_iter_has_next (ucl_hash_t *hashlin, ucl_hash_iter_t iter);
103 * @param hashlin
105 bool ucl_hash_reserve (ucl_hash_t *hashlin, size_
[all...]
H A Ducl_hash.c259 void ucl_hash_destroy (ucl_hash_t* hashlin, ucl_hash_free_func func) argument
263 if (hashlin == NULL) {
270 hashlin->hash;
285 if (hashlin->caseless) {
287 hashlin->hash;
292 hashlin->hash;
296 kv_destroy (hashlin->ar);
297 UCL_FREE (sizeof (*hashlin), hashlin);
301 ucl_hash_insert (ucl_hash_t* hashlin, cons argument
341 ucl_hash_replace(ucl_hash_t* hashlin, const ucl_object_t *old, const ucl_object_t *new) argument
390 ucl_hash_iterate2(ucl_hash_t *hashlin, ucl_hash_iter_t *iter, int *ep) argument
428 ucl_hash_iter_has_next(ucl_hash_t *hashlin, ucl_hash_iter_t iter) argument
437 ucl_hash_search(ucl_hash_t* hashlin, const char *key, unsigned keylen) argument
475 ucl_hash_delete(ucl_hash_t* hashlin, const ucl_object_t *obj) argument
522 ucl_hash_reserve(ucl_hash_t *hashlin, size_t sz) argument
618 ucl_hash_sort(ucl_hash_t *hashlin, enum ucl_object_keys_sort_flags fl) argument
[all...]
H A Ducl_internal.h462 ucl_hash_search_obj (ucl_hash_t* hashlin, ucl_object_t *obj) argument
464 return (const ucl_object_t *)ucl_hash_search (hashlin, obj->key, obj->keylen);
467 static inline ucl_hash_t * ucl_hash_insert_object (ucl_hash_t *hashlin,
472 ucl_hash_insert_object (ucl_hash_t *hashlin, argument
478 if (hashlin == NULL) {
484 nhp = hashlin;
487 if (nhp != hashlin) {

Completed in 50 milliseconds