Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:table

733 	register struct hnamemem *table;
741 table = &tporttable[i];
743 table = &uporttable[i];
747 while (table->name)
748 table = table->nxt;
751 table->name = strdup(buf);
753 table->name = strdup(sv->s_name);
754 table->addr = port;
755 table->nxt = newhnamemem();
775 register struct hnamemem *table;
779 table = &eprototable[j];
780 while (table->name)
781 table = table->nxt;
782 table->name = eproto_db[i].s;
783 table->addr = htons(eproto_db[i].p);
784 table->nxt = newhnamemem();
842 * Initialize the ethers hash table. We take two different approaches
845 * and etheraddr_string() fills in the table on demand. If it doesn't,
1123 register struct hnamemem *table;
1127 table = &ipxsaptable[j];
1128 while (table->name)
1129 table = table->nxt;
1130 table->name = ipxsap_db[i].s;
1131 table->addr = htons(ipxsap_db[i].v);
1132 table->nxt = newhnamemem();