Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:hnamemem

84 struct hnamemem {
87 struct hnamemem *nxt;
90 struct hnamemem hnametable[HASHNAMESIZE];
91 struct hnamemem tporttable[HASHNAMESIZE];
92 struct hnamemem uporttable[HASHNAMESIZE];
93 struct hnamemem eprototable[HASHNAMESIZE];
94 struct hnamemem dnaddrtable[HASHNAMESIZE];
95 struct hnamemem ipxsaptable[HASHNAMESIZE];
230 static struct hnamemem *p; /* static for longjmp() */
543 register struct hnamemem *tp;
626 register struct hnamemem *tp;
645 register struct hnamemem *tp;
665 register struct hnamemem *tp;
691 register struct hnamemem *table;
733 register struct hnamemem *table;
1081 register struct hnamemem *table;
1123 register struct hnamemem *tp;
1140 /* Return a zero'ed hnamemem struct and cuts down on calloc() overhead */
1141 struct hnamemem *
1144 register struct hnamemem *p;
1145 static struct hnamemem *ptr = NULL;
1150 ptr = (struct hnamemem *)calloc(num, sizeof (*ptr));