Home
last modified time | relevance | path

Searched refs:_hashmap_clear (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/basic/
Dhashmap.h289 void _hashmap_clear(HashmapBase *h, free_func_t default_free_key, free_func_t default_free_value);
291 _hashmap_clear(HASHMAP_BASE(h), NULL, NULL); in hashmap_clear()
294 _hashmap_clear(HASHMAP_BASE(h), NULL, NULL); in ordered_hashmap_clear()
298 _hashmap_clear(HASHMAP_BASE(h), NULL, free); in hashmap_clear_free()
301 _hashmap_clear(HASHMAP_BASE(h), NULL, free); in ordered_hashmap_clear_free()
305 _hashmap_clear(HASHMAP_BASE(h), free, NULL); in hashmap_clear_free_key()
308 _hashmap_clear(HASHMAP_BASE(h), free, NULL); in ordered_hashmap_clear_free_key()
312 _hashmap_clear(HASHMAP_BASE(h), free, free); in hashmap_clear_free_free()
315 _hashmap_clear(HASHMAP_BASE(h), free, free); in ordered_hashmap_clear_free_free()
Dset.h85 _hashmap_clear(HASHMAP_BASE(s), NULL, NULL); in set_clear()
89 _hashmap_clear(HASHMAP_BASE(s), free, NULL); in set_clear_free()
Dhashmap.c889 _hashmap_clear(h, default_free_key, default_free_value); in _hashmap_free()
896 void _hashmap_clear(HashmapBase *h, free_func_t default_free_key, free_func_t default_free_value) { in _hashmap_clear() function