Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:table

765 	register struct hnamemem *table;
773 table = &tporttable[i];
775 table = &uporttable[i];
779 while (table->name)
780 table = table->nxt;
783 table->name = strdup(buf);
785 table->name = strdup(sv->s_name);
786 if (table->name == NULL)
789 table->addr = port;
790 table->nxt = newhnamemem(ndo);
826 register struct hnamemem *table;
830 table = &eprototable[j];
831 while (table->name)
832 table = table->nxt;
833 table->name = eproto_db[i].s;
834 table->addr = htons(eproto_db[i].p);
835 table->nxt = newhnamemem(ndo);
896 * Initialize the ethers hash table. We take two different approaches
899 * and etheraddr_string() fills in the table on demand. If it doesn't,
1178 register struct hnamemem *table;
1182 table = &ipxsaptable[j];
1183 while (table->name)
1184 table = table->nxt;
1185 table->name = ipxsap_db[i].s;
1186 table->addr = htons(ipxsap_db[i].v);
1187 table->nxt = newhnamemem(ndo);