Symbol: dn_ht_find
sys/netpfil/ipfw/dn_heap.h
173
void *dn_ht_find(struct dn_ht *, uintptr_t, int, void *);
sys/netpfil/ipfw/ip_dn_io.c
931
fs = dn_ht_find(V_dn_cfg.fshash, fs_id, 0, NULL);
sys/netpfil/ipfw/ip_dummynet.c
1201
return dn_ht_find(V_dn_cfg.schedhash, i, 0, NULL);
sys/netpfil/ipfw/ip_dummynet.c
1385
fs = dn_ht_find(V_dn_cfg.fshash, ep->nr, 0, NULL);
sys/netpfil/ipfw/ip_dummynet.c
1659
fs = dn_ht_find(V_dn_cfg.fshash, i, flags, NULL);
sys/netpfil/ipfw/ip_dummynet.c
1777
s = dn_ht_find(V_dn_cfg.schedhash, i, DNHT_INSERT, &a);
sys/netpfil/ipfw/ip_dummynet.c
1780
s = dn_ht_find(V_dn_cfg.schedhash, i, 0, &a);
sys/netpfil/ipfw/ip_dummynet.c
1852
dn_ht_find(V_dn_cfg.schedhash, i, DNHT_REMOVE, NULL);
sys/netpfil/ipfw/ip_dummynet.c
1870
s->fs = dn_ht_find(V_dn_cfg.fshash, i, 0, NULL);
sys/netpfil/ipfw/ip_dummynet.c
1899
if (dn_ht_find(V_dn_cfg.schedhash, i, 0, &a) != NULL) {
sys/netpfil/ipfw/ip_dummynet.c
475
return dn_ht_find(fs->qht, (uintptr_t)&masked_id,
sys/netpfil/ipfw/ip_dummynet.c
617
return dn_ht_find(s->siht, (uintptr_t)&id_t,
sys/netpfil/ipfw/ip_dummynet.c
823
fs = dn_ht_find(V_dn_cfg.fshash, i, DNHT_REMOVE, NULL);
sys/netpfil/ipfw/ip_dummynet.c
944
s = dn_ht_find(V_dn_cfg.schedhash, i, DNHT_REMOVE, NULL);
sys/netpfil/ipfw/test/test_dn_heap.c
111
dn_ht_find(h, (uintptr_t)y, DNHT_INSERT | DNHT_KEY_IS_OBJ, NULL);
sys/netpfil/ipfw/test/test_dn_heap.c
115
dn_ht_find(h, x, DNHT_KEY_IS_OBJ | DNHT_REMOVE, NULL));
sys/netpfil/ipfw/test/test_dn_heap.c
117
dn_ht_find(h, x, DNHT_KEY_IS_OBJ | DNHT_REMOVE, NULL));
sys/netpfil/ipfw/test/test_dn_heap.c
119
dn_ht_find(h, x1, DNHT_REMOVE, NULL));
sys/netpfil/ipfw/test/test_dn_heap.c
121
dn_ht_find(h, x1, DNHT_REMOVE, NULL));
sys/netpfil/ipfw/test/test_dn_heap.c
98
dn_ht_find(h, (uintptr_t)*p, DNHT_INSERT, NULL);