Symbol: hash_tbl
libexec/bootpd/bootpd.h
211
extern hash_tbl *hwhashtable;
libexec/bootpd/bootpd.h
212
extern hash_tbl *iphashtable;
libexec/bootpd/bootpd.h
213
extern hash_tbl *nmhashtable;
libexec/bootpd/hash.c
124
hash_Reset(hash_tbl *hashtable, hash_freefp free_data)
libexec/bootpd/hash.c
181
hash_Exists(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
209
hash_Insert(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
237
hash_Delete(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
299
hash_Lookup(hash_tbl *hashtable, unsigned hashcode, hash_cmpfp compare,
libexec/bootpd/hash.c
321
hash_NextEntry(hash_tbl *hashtable)
libexec/bootpd/hash.c
373
hash_FirstEntry(hash_tbl *hashtable)
libexec/bootpd/hash.c
74
hash_tbl *
libexec/bootpd/hash.c
77
hash_tbl *hashtblptr;
libexec/bootpd/hash.c
81
totalsize = sizeof(hash_tbl)
libexec/bootpd/hash.c
83
hashtblptr = (hash_tbl *) malloc(totalsize);
libexec/bootpd/hash.h
121
extern hash_tbl *hash_Init(u_int tablesize);
libexec/bootpd/hash.h
123
extern void hash_Reset(hash_tbl *tbl, hash_freefp);
libexec/bootpd/hash.h
127
extern int hash_Exists(hash_tbl *, u_int code,
libexec/bootpd/hash.h
130
extern int hash_Insert(hash_tbl *, u_int code,
libexec/bootpd/hash.h
134
extern int hash_Delete(hash_tbl *, u_int code,
libexec/bootpd/hash.h
138
extern hash_datum *hash_Lookup(hash_tbl *, u_int code,
libexec/bootpd/hash.h
141
extern hash_datum *hash_FirstEntry(hash_tbl *);
libexec/bootpd/hash.h
143
extern hash_datum *hash_NextEntry(hash_tbl *);
libexec/bootpd/readfile.c
290
hash_tbl *hwhashtable;
libexec/bootpd/readfile.c
291
hash_tbl *iphashtable;
libexec/bootpd/readfile.c
292
hash_tbl *nmhashtable;