Lines Matching defs:out
387 toWire(DNSOutput out) {
388 header.toWire(out);
395 rec.toWire(out, i, c);
402 sectionToWire(DNSOutput out, int section, Compression c,
406 int pos = out.current();
413 pos = out.current();
417 rec.toWire(out, section, c);
418 if (out.current() > maxLength) {
419 out.jump(pos);
428 toWire(DNSOutput out, int maxLength) {
438 int startpos = out.current();
439 header.toWire(out);
445 skipped = sectionToWire(out, i, c, tempMaxLength);
456 out.save();
457 out.jump(startpos);
458 newheader.toWire(out);
459 out.restore();
465 TSIGRecord tsigrec = tsigkey.generate(this, out.toByteArray(),
470 tsigrec.toWire(out, Section.ADDITIONAL, c);
473 out.save();
474 out.jump(startpos);
475 newheader.toWire(out);
476 out.restore();
487 DNSOutput out = new DNSOutput();
488 toWire(out);
489 size = out.current();
490 return out.toByteArray();
508 DNSOutput out = new DNSOutput();
509 toWire(out, maxLength);
510 size = out.current();
511 return out.toByteArray();