Symbol: hash_tbl
libexec/bootpd/bootpd.h
208
extern hash_tbl *hwhashtable;
libexec/bootpd/bootpd.h
209
extern hash_tbl *iphashtable;
libexec/bootpd/bootpd.h
210
extern hash_tbl *nmhashtable;
libexec/bootpd/hash.c
119
hash_Reset(hash_tbl *hashtable, hash_freefp free_data)
libexec/bootpd/hash.c
176
hash_Exists(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
204
hash_Insert(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
232
hash_Delete(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
294
hash_Lookup(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
316
hash_NextEntry(hash_tbl *hashtable)
libexec/bootpd/hash.c
368
hash_FirstEntry(hash_tbl *hashtable)
libexec/bootpd/hash.c
69
hash_tbl *
libexec/bootpd/hash.c
72
hash_tbl *hashtblptr;
libexec/bootpd/hash.c
76
totalsize = sizeof(hash_tbl)
libexec/bootpd/hash.c
78
hashtblptr = (hash_tbl *) malloc(totalsize);
libexec/bootpd/hash.h
123
extern hash_tbl *hash_Init(u_int tablesize);
libexec/bootpd/hash.h
125
extern void hash_Reset(hash_tbl *tbl, hash_freefp);
libexec/bootpd/hash.h
129
extern int hash_Exists(hash_tbl *, u_int code,
libexec/bootpd/hash.h
132
extern int hash_Insert(hash_tbl *, u_int code,
libexec/bootpd/hash.h
136
extern int hash_Delete(hash_tbl *, u_int code,
libexec/bootpd/hash.h
140
extern hash_datum *hash_Lookup(hash_tbl *, u_int code,
libexec/bootpd/hash.h
143
extern hash_datum *hash_FirstEntry(hash_tbl *);
libexec/bootpd/hash.h
145
extern hash_datum *hash_NextEntry(hash_tbl *);
libexec/bootpd/readfile.c
279
hash_tbl *hwhashtable;
libexec/bootpd/readfile.c
280
hash_tbl *iphashtable;
libexec/bootpd/readfile.c
281
hash_tbl *nmhashtable;