Home | History | Annotate | Download | only in DNS

Lines Matching defs:out

99 		throw new IllegalArgumentException("label out of range");
640 * @param out The output stream containing the DNS message.
645 toWire(DNSOutput out, Compression c) {
662 out.writeU16(pos);
666 c.add(out.current(), tname);
668 out.writeByteArray(name, off, name[off] + 1);
671 out.writeU8(0);
680 DNSOutput out = new DNSOutput();
681 toWire(out, null);
682 return out.toByteArray();
687 * @param out The output stream to which the message is written.
690 toWireCanonical(DNSOutput out) {
692 out.writeByteArray(b);
718 * @param out The output stream containing the DNS message.
725 toWire(DNSOutput out, Compression c, boolean canonical) {
727 toWireCanonical(out);
729 toWire(out, c);