Searched refs:addAnswer (Results 1 - 11 of 11) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/tasks/
H A DDNSTask.java110 public DNSOutgoing addAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException { method in class:DNSTask
113 newOut.addAnswer(in, rec);
125 newOut.addAnswer(in, rec);
141 public DNSOutgoing addAnswer(DNSOutgoing out, DNSRecord rec, long now) throws IOException { method in class:DNSTask
144 newOut.addAnswer(rec, now);
156 newOut.addAnswer(rec, now);
H A DResponder.java144 out = this.addAnswer(out, _in, answer);
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
H A DServiceInfoResolver.java65 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifiedName(), DNSRecordType.TYPE_SRV, DNSRecordClass.CLASS_IN), now);
66 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifiedName(), DNSRecordType.TYPE_TXT, DNSRecordClass.CLASS_IN), now);
68 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer(), DNSRecordType.TYPE_A, DNSRecordClass.CLASS_IN), now);
69 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer(), DNSRecordType.TYPE_AAAA, DNSRecordClass.CLASS_IN), now);
H A DServiceResolver.java50 newOut = this.addAnswer(newOut, new DNSRecord.Pointer(info.getType(), DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, DNSConstants.DNS_TTL, info.getQualifiedName()), now);
51 // newOut = this.addAnswer(newOut, new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(),
H A DTypeResolver.java53 newOut = this.addAnswer(newOut, new DNSRecord.Pointer("_services._dns-sd._udp.local.", DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, DNSConstants.DNS_TTL, typeEntry.getType()), now);
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DCanceler.java105 newOut = this.addAnswer(newOut, null, answer);
118 newOut = this.addAnswer(newOut, null, answer);
H A DAnnouncer.java105 newOut = this.addAnswer(newOut, null, answer);
118 newOut = this.addAnswer(newOut, null, answer);
H A DRenewer.java106 newOut = this.addAnswer(newOut, null, answer);
119 newOut = this.addAnswer(newOut, null, answer);
/external/jmdns/src/javax/jmdns/impl/
H A DDNSRecord.java89 abstract DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException; method in class:DNSRecord
384 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException { method in class:DNSRecord.Address
484 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException { method in class:DNSRecord.Pointer
600 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException { method in class:DNSRecord.Text
794 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException { method in class:DNSRecord.Service
798 return dns.addAnswer(in, addr, port, out, new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(), dns
868 * @see javax.jmdns.impl.DNSRecord#addAnswer(javax.jmdns.impl.JmDNSImpl, javax.jmdns.impl.DNSIncoming, java.net.InetAddress, int, javax.jmdns.impl.DNSOutgoing)
871 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException { method in class:DNSRecord.HostInformation
H A DDNSOutgoing.java261 public void addAnswer(DNSIncoming in, DNSRecord rec) throws IOException { method in class:DNSOutgoing
263 this.addAnswer(rec, 0);
274 public void addAnswer(DNSRecord rec, long now) throws IOException { method in class:DNSOutgoing
H A DJmDNSImpl.java1504 public DNSOutgoing addAnswer(DNSIncoming in, InetAddress addr, int port, DNSOutgoing out, DNSRecord rec) throws IOException { method in class:JmDNSImpl
1510 newOut.addAnswer(in, rec);
1517 newOut.addAnswer(in, rec);

Completed in 84 milliseconds