Lines Matching defs:out
98 DNSOutput out = new DNSOutput();
99 optionToWire(out);
100 return out.toByteArray();
114 * @param out The input stream.
156 * @param out The output stream.
159 optionToWire(DNSOutput out);
163 * @param out The output stream.
166 toWire(DNSOutput out) {
167 out.writeU16(code);
168 int lengthPosition = out.current();
169 out.writeU16(0); /* until we know better */
170 optionToWire(out);
171 int length = out.current() - lengthPosition - 2;
172 out.writeU16At(length, lengthPosition);
181 DNSOutput out = new DNSOutput();
182 toWire(out);
183 return out.toByteArray();