Home | History | Annotate | Download | only in config

Lines Matching defs:hashtab

71 struct hashtab {
79 static struct hashtab strings;
88 static void ht_expand(struct hashtab *);
89 static void ht_init(struct hashtab *, size_t);
98 ht_init(struct hashtab *ht, size_t sz)
115 ht_expand(struct hashtab *ht)
209 struct hashtab *ht;
230 struct hashtab *
233 struct hashtab *ht;
241 ht_free(struct hashtab *ht)
265 ht_insrep2(struct hashtab *ht, const char *nam1, const char *nam2, void *val, int replace)
290 ht_insrep(struct hashtab *ht, const char *nam, void *val, int replace)
299 ht_remove2(struct hashtab *ht, const char *name1, const char *name2)
321 ht_remove(struct hashtab *ht, const char *name)
327 ht_lookup2(struct hashtab *ht, const char *nam1, const char *nam2)
342 ht_lookup(struct hashtab *ht, const char *nam)
354 ht_enumerate2(struct hashtab *ht, ht_callback2 cbfunc2, void *arg)
370 ht_enumerate(struct hashtab *ht, ht_callback cbfunc, void *arg)
393 struct hashtab imp; \