Home
last modified time | relevance | path

Searched refs:fromWire (Results 1 – 4 of 4) sorted by relevance

/external/smack/src/org/xbill/DNS/
DEDNSOption.java117 fromWire(DNSInput in) throws IOException { in fromWire() method in EDNSOption
150 fromWire(byte [] b) throws IOException { in fromWire() method in EDNSOption
151 return fromWire(new DNSInput(b)); in fromWire()
DRecord.java176 fromWire(DNSInput in, int section, boolean isUpdate) throws IOException { in fromWire() method in Record
200 fromWire(DNSInput in, int section) throws IOException { in fromWire() method in Record
201 return fromWire(in, section, false); in fromWire()
208 fromWire(byte [] b, int section) throws IOException { in fromWire() method in Record
209 return fromWire(new DNSInput(b), section, false); in fromWire()
DOPTRecord.java94 EDNSOption option = EDNSOption.fromWire(in); in rrFromWire()
DMessage.java109 Record rec = Record.fromWire(in, i, isUpdate); in Message()