Searched refs:_hashmap_free (Results 1 – 3 of 3) sorted by relevance
/systemd-251/src/basic/ |
D | hashmap.h | 100 HashmapBase* _hashmap_free(HashmapBase *h, free_func_t default_free_key, free_func_t default_free_v… 102 return (void*) _hashmap_free(HASHMAP_BASE(h), NULL, NULL); in hashmap_free() 105 return (void*) _hashmap_free(HASHMAP_BASE(h), NULL, NULL); in ordered_hashmap_free() 109 return (void*) _hashmap_free(HASHMAP_BASE(h), NULL, free); in hashmap_free_free() 112 return (void*) _hashmap_free(HASHMAP_BASE(h), NULL, free); in ordered_hashmap_free_free() 116 return (void*) _hashmap_free(HASHMAP_BASE(h), free, NULL); in hashmap_free_free_key() 119 return (void*) _hashmap_free(HASHMAP_BASE(h), free, NULL); in ordered_hashmap_free_free_key() 123 return (void*) _hashmap_free(HASHMAP_BASE(h), free, free); in hashmap_free_free_free() 126 return (void*) _hashmap_free(HASHMAP_BASE(h), free, free); in ordered_hashmap_free_free_free()
|
D | set.h | 20 return (Set*) _hashmap_free(HASHMAP_BASE(s), NULL, NULL); in set_free() 24 return (Set*) _hashmap_free(HASHMAP_BASE(s), free, NULL); in set_free_free()
|
D | hashmap.c | 887 HashmapBase* _hashmap_free(HashmapBase *h, free_func_t default_free_key, free_func_t default_free_v… in _hashmap_free() function 1755 return _hashmap_free(copy, false, false); in _hashmap_copy()
|