Home | History | Annotate | Download | only in DNS

Lines Matching refs:entry

15 private static class Entry {
18 Entry next;
23 private Entry [] table;
31 table = new Entry[TABLE_SIZE];
35 * Adds a compression entry mapping a name to a position in a message.
44 Entry entry = new Entry();
45 entry.name = name;
46 entry.pos = pos;
47 entry.next = table[row];
48 table[row] = entry;
63 for (Entry entry = table[row]; entry != null; entry = entry.next) {
64 if (entry.name.equals(name))
65 pos = entry.pos;