Home | History | Annotate | Download | only in program

Lines Matching refs:hash_table

25  * \file hash_table.c
33 #include "hash_table.h"
40 struct hash_table {
56 struct hash_table *
60 struct hash_table *ht;
85 hash_table_dtor(struct hash_table *ht)
93 hash_table_clear(struct hash_table *ht)
112 get_node(struct hash_table *ht, const void *key)
130 hash_table_find(struct hash_table *ht, const void *key)
138 hash_table_insert(struct hash_table *ht, void *data, const void *key)
153 hash_table_replace(struct hash_table *ht, void *data, const void *key)
179 hash_table_remove(struct hash_table *ht, const void *key)
190 hash_table_call_foreach(struct hash_table *ht,