Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/ipf/lib/
H A Dload_hash.c44 for (n = 0, a = list; a != NULL; a = a->ipe_next)
87 for (a = list; a != NULL; a = a->ipe_next) {
102 for (a = list; a != NULL; a = a->ipe_next) {
113 for (a = list; a != NULL; a = a->ipe_next)
H A Dprinthashnode.c78 ipep = ipe.ipe_next;
/illumos-gate/usr/src/uts/common/inet/ipf/
H A Dip_htable.c331 ipe->ipe_next = iph->iph_table[hv];
335 iph->iph_table[hv]->ipe_pnext = &ipe->ipe_next;
340 if (ipe->ipe_next != NULL)
341 ipe->ipe_next->ipe_psnext = &ipe->ipe_snext;
395 *ipe->ipe_pnext = ipe->ipe_next;
396 if (ipe->ipe_next != NULL)
397 ipe->ipe_next->ipe_pnext = ipe->ipe_pnext;
531 for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_next) {
583 for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_next) {
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dippool_y.y178 e = e->ipe_next)
221 | groupentry next grouplist { $$ = $1; $1->ipe_next = $3; }
236 $$->ipe_next = $3;
259 | groupentry next setgrouplist { $1->ipe_next = $3; $$ = $1; }
322 | hashentry next hashlist { $1->ipe_next = $3; $$ = $1; }
H A Dipf_y.y2175 n->ipe_next = calloc(1, sizeof(*n));
2176 if (n->ipe_next == NULL)
2178 n = n->ipe_next;
2193 top = n->ipe_next;
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_htable.h15 struct iphtent_s *ipe_next, **ipe_pnext; member