Home
last modified time | relevance | path

Searched refs:ipe_next (Results 1 – 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/ipfilter/tools/
Dippool_y.y122 $3 = h->ipe_next;
136 $4 = h->ipe_next;
214 e = e->ipe_next)
268 | groupentry next grouplist { $$ = $1; $1->ipe_next = $3; }
273 $$->ipe_next = $3;
294 | groupentry next setgrouplist { $1->ipe_next = $3; $$ = $1; }
334 | hashentry next hashlist { $1->ipe_next = $3; $$ = $1; }
479 ipht.iph_list = h->ipe_next;
497 ipht.iph_list = h->ipe_next;
701 hbot->ipe_next = h;
Dipf_y.y2373 n->ipe_next = calloc(1, sizeof(*n));
2374 n = n->ipe_next;
2389 top = n->ipe_next;
/freebsd-10-stable/contrib/ipfilter/lib/
Dload_hash.c33 for (n = 0, a = list; a != NULL; a = a->ipe_next)
83 for (a = list; a != NULL; a = a->ipe_next) {
92 for (a = list; a != NULL; a = a->ipe_next)
Dprinthash_live.c54 if (entry.ipe_next == NULL)
Dprinthashnode.c67 ipep = ipe.ipe_next;
/freebsd-10-stable/sys/contrib/ipfilter/netinet/
Dip_htable.c628 if (iph->iph_tail == &ipe->ipe_next)
645 if (ipe->ipe_next != NULL)
646 ipe->ipe_next->ipe_pnext = ipe->ipe_pnext;
648 *ipe->ipe_pnext = ipe->ipe_next;
650 ipe->ipe_next = NULL;
962 iph->iph_tail = &ipe->ipe_next;
963 ipe->ipe_next = NULL;
1281 nextnode = node->ipe_next;
1292 hnext = nextnode->ipe_next;
1410 for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_next) {
Dip_htable.h7 struct iphtent_s *ipe_next, **ipe_pnext; member