Home | History | Annotate | Download | only in DNS

Lines Matching refs:counts

19 private int [] counts;
28 counts = new int[4];
57 for (int i = 0; i < counts.length; i++)
58 counts[i] = in.readU16();
74 for (int i = 0; i < counts.length; i++)
75 out.writeU16(counts[i]);
212 counts[field] = value;
217 if (counts[field] == 0xFFFF)
220 counts[field]++;
225 if (counts[field] == 0)
228 counts[field]--;
237 return counts[field];
282 System.arraycopy(counts, 0, h.counts, 0, counts.length);