Lines Matching defs:table
169 #define htable_link(table, element) { \ argument
180 static void htable_size(HTABLE *table, size_t size) in htable_size()
198 HTABLE *table; in htable_create() local
208 static void htable_grow(HTABLE *table) in htable_grow()
229 HTABLE_INFO *htable_enter(HTABLE *table, const char *key, void *value) in htable_enter()
244 void *htable_find(HTABLE *table, const char *key) in htable_find()
259 HTABLE_INFO *htable_locate(HTABLE *table, const char *key) in htable_locate()
274 void htable_delete(HTABLE *table, const char *key, void (*free_fn) (void *)) in htable_delete()
304 void htable_free(HTABLE *table, void (*free_fn) (void *)) in htable_free()
332 void htable_walk(HTABLE *table, void (*action) (HTABLE_INFO *, void *), in htable_walk()
347 HTABLE_INFO **htable_list(HTABLE *table) in htable_list()
368 HTABLE_INFO *htable_sequence(HTABLE *table, int how) in htable_sequence()