Home | History | Annotate | Download | only in include

Lines Matching refs:hash_table

40 typedef struct ht hash_table;
53 hashnode (*alloc_node) (hash_table *);
73 extern hash_table *ht_create (unsigned int order);
76 extern void ht_destroy (hash_table *);
78 extern hashnode ht_lookup (hash_table *, const unsigned char *,
80 extern hashnode ht_lookup_with_hash (hash_table *, const unsigned char *,
90 extern void ht_forall (hash_table *, ht_cb, const void *);
94 extern void ht_purge (hash_table *, ht_cb, const void *);
97 extern void ht_load (hash_table *ht, hashnode *entries,
101 extern void ht_dump_statistics (hash_table *);