Lines Matching defs:hash_entry
35 typedef struct _hash_entry hash_entry;
46 hash_entry *next;
50 hash_entry **entries;
57 hash_entry *entry;
65 hash_entry *hash_put(hash_table *hash, hash_entry *entry);
66 hash_entry *hash_get(hash_table *hash, hash_key *name);
67 hash_entry * hash_check(hash_table *hash, const char *name, unsigned int length);
68 void hash_rem(hash_table *hash, hash_entry *entry);
70 hash_entry *hash_rem_no_free(hash_table *hash, hash_entry *entry);
72 hash_entry *hash_iter_first(hash_table *hash);
73 hash_entry *hash_iter_next(hash_table *hash);