Lines Matching refs:ht
73 extern void hash_table_dtor(struct hash_table *ht);
81 extern void hash_table_clear(struct hash_table *ht);
95 extern void *hash_table_find(struct hash_table *ht, const void *key);
112 extern void hash_table_insert(struct hash_table *ht, void *data,
129 extern bool hash_table_replace(struct hash_table *ht, void *data,
135 extern void hash_table_remove(struct hash_table *ht, const void *key);
185 hash_table_call_foreach(struct hash_table *ht,
212 this->ht = hash_table_ctor(0, hash_table_string_hash, in string_to_uint_map()
218 hash_table_call_foreach(this->ht, delete_key, NULL); in ~string_to_uint_map()
219 hash_table_dtor(this->ht); in ~string_to_uint_map()
227 hash_table_call_foreach(this->ht, delete_key, NULL); in clear()
228 hash_table_clear(this->ht); in clear()
244 (intptr_t) hash_table_find(this->ht, (const void *) key); in get()
268 bool result = hash_table_replace(this->ht, in put()
284 struct hash_table *ht; member