Home
last modified time | relevance | path

Searched refs:dn_ht (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/netpfil/ipfw/
H A Ddn_heap.h165 struct dn_ht; /* should be opaque */
167 struct dn_ht *dn_ht_init(struct dn_ht *, int buckets, int ofs,
171 void dn_ht_free(struct dn_ht *, int flags);
173 void *dn_ht_find(struct dn_ht *, uintptr_t, int, void *);
174 int dn_ht_scan(struct dn_ht *, int (*)(void *, void *), void *);
175 int dn_ht_scan_bucket(struct dn_ht *, int * , int (*)(void *, void *), void *);
176 int dn_ht_entries(struct dn_ht *);
H A Ddn_heap.c322 struct dn_ht { struct
337 struct dn_ht * argument
338 dn_ht_init(struct dn_ht *ht, int buckets, int ofs, in dn_ht_init()
430 dn_ht_free(struct dn_ht *ht, int flags) in dn_ht_free()
444 dn_ht_entries(struct dn_ht *ht) in dn_ht_entries()
451 dn_ht_find(struct dn_ht *ht, uintptr_t key, int flags, void *arg) in dn_ht_find()
494 dn_ht_scan(struct dn_ht *ht, int (*fn)(void *, void *), void *arg) in dn_ht_scan()
529 dn_ht_scan_bucket(struct dn_ht *ht, int *bucket, int (*fn)(void *, void *), in dn_ht_scan_bucket()
H A Dip_dn_private.h143 struct dn_ht *fshash;
144 struct dn_ht *schedhash;
211 struct dn_ht *qht;
296 struct dn_ht *siht;
/freebsd/sys/netpfil/ipfw/test/
H A Dtest_dn_heap.c90 struct dn_ht *h; in test_hash()