Lines Matching refs:HashEntry
81 typedef struct HashEntry {
82 struct HashEntry *next; /* Used to link together all the entries
87 } HashEntry;
91 HashEntry **buckets;
101 HashEntry *entry; /* Next entry to check in current bucket. */
110 HashEntry_Get(HashEntry *he)
116 HashEntry_Set(HashEntry *he, void *datum)
132 HashEntry *HashTable_FindEntry(HashTable *, const char *) MAKE_ATTR_USE;
137 HashEntry *HashTable_CreateEntry(HashTable *, const char *, bool *);
139 void HashTable_DeleteEntry(HashTable *, HashEntry *);