HomeSort by relevance Sort by last modified time
    Searched refs:DNSOutgoing (Results 1 - 14 of 14) sorted by null

  /external/jmdns/src/javax/jmdns/impl/tasks/
DNSTask.java 9 import javax.jmdns.impl.DNSOutgoing;
78 public DNSOutgoing addQuestion(DNSOutgoing out, DNSQuestion rec) throws IOException {
79 DNSOutgoing newOut = out;
92 newOut = new DNSOutgoing(flags, multicast, maxUDPPayload);
110 public DNSOutgoing addAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException {
111 DNSOutgoing newOut = out;
124 newOut = new DNSOutgoing(flags, multicast, maxUDPPayload);
141 public DNSOutgoing addAnswer(DNSOutgoing out, DNSRecord rec, long now) throws IOException
    [all...]
Responder.java 14 import javax.jmdns.impl.DNSOutgoing;
135 DNSOutgoing out = new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA, !_unicast, _in.getSenderUDPPayload());
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 9 import javax.jmdns.impl.DNSOutgoing;
68 DNSOutgoing out = new DNSOutgoing(DNSConstants.FLAGS_QR_QUERY);
96 protected abstract DNSOutgoing addQuestions(DNSOutgoing out) throws IOException;
107 protected abstract DNSOutgoing addAnswers(DNSOutgoing out) throws IOException;
ServiceResolver.java 10 import javax.jmdns.impl.DNSOutgoing;
43 * @see javax.jmdns.impl.tasks.Resolver#addAnswers(javax.jmdns.impl.DNSOutgoing)
46 protected DNSOutgoing addAnswers(DNSOutgoing out) throws IOException {
47 DNSOutgoing newOut = out;
59 * @see javax.jmdns.impl.tasks.Resolver#addQuestions(javax.jmdns.impl.DNSOutgoing)
62 protected DNSOutgoing addQuestions(DNSOutgoing out) throws IOException {
63 DNSOutgoing newOut = out;
TypeResolver.java 9 import javax.jmdns.impl.DNSOutgoing;
45 * @see javax.jmdns.impl.tasks.Resolver#addAnswers(javax.jmdns.impl.DNSOutgoing)
48 protected DNSOutgoing addAnswers(DNSOutgoing out) throws IOException {
49 DNSOutgoing newOut = out;
60 * @see javax.jmdns.impl.tasks.Resolver#addQuestions(javax.jmdns.impl.DNSOutgoing)
63 protected DNSOutgoing addQuestions(DNSOutgoing out) throws IOException {
ServiceInfoResolver.java 9 import javax.jmdns.impl.DNSOutgoing;
58 * @see javax.jmdns.impl.tasks.Resolver#addAnswers(javax.jmdns.impl.DNSOutgoing)
61 protected DNSOutgoing addAnswers(DNSOutgoing out) throws IOException {
62 DNSOutgoing newOut = out;
77 * @see javax.jmdns.impl.tasks.Resolver#addQuestions(javax.jmdns.impl.DNSOutgoing)
80 protected DNSOutgoing addQuestions(DNSOutgoing out) throws IOException {
81 DNSOutgoing newOut = out;
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
Canceler.java 11 import javax.jmdns.impl.DNSOutgoing;
93 protected DNSOutgoing createOugoing() {
94 return new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA);
99 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForDNS(javax.jmdns.impl.DNSOutgoing)
102 protected DNSOutgoing buildOutgoingForDNS(DNSOutgoing out) throws IOException {
103 DNSOutgoing newOut = out;
112 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing)
115 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException
    [all...]
Announcer.java 11 import javax.jmdns.impl.DNSOutgoing;
93 protected DNSOutgoing createOugoing() {
94 return new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA);
99 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForDNS(javax.jmdns.impl.DNSOutgoing)
102 protected DNSOutgoing buildOutgoingForDNS(DNSOutgoing out) throws IOException {
103 DNSOutgoing newOut = out;
112 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing)
115 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException
    [all...]
Renewer.java 11 import javax.jmdns.impl.DNSOutgoing;
94 protected DNSOutgoing createOugoing() {
95 return new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA);
100 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForDNS(javax.jmdns.impl.DNSOutgoing)
103 protected DNSOutgoing buildOutgoingForDNS(DNSOutgoing out) throws IOException {
104 DNSOutgoing newOut = out;
113 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing)
116 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException
    [all...]
Prober.java 11 import javax.jmdns.impl.DNSOutgoing;
106 protected DNSOutgoing createOugoing() {
107 return new DNSOutgoing(DNSConstants.FLAGS_QR_QUERY);
112 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForDNS(javax.jmdns.impl.DNSOutgoing)
115 protected DNSOutgoing buildOutgoingForDNS(DNSOutgoing out) throws IOException {
116 DNSOutgoing newOut = out;
126 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing)
129 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException
    [all...]
DNSStateTask.java 11 import javax.jmdns.impl.DNSOutgoing;
102 DNSOutgoing out = this.createOugoing();
153 protected abstract DNSOutgoing buildOutgoingForDNS(DNSOutgoing out) throws IOException;
155 protected abstract DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException;
157 protected abstract DNSOutgoing createOugoing();
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 20 public final class DNSOutgoing extends DNSMessage {
23 private final DNSOutgoing _out;
35 MessageOutputStream(int size, DNSOutgoing out) {
39 MessageOutputStream(int size, DNSOutgoing out, int offset) {
195 public DNSOutgoing(int flags) {
205 public DNSOutgoing(int flags, boolean multicast) {
217 public DNSOutgoing(int flags, boolean multicast, int senderUDPPayload) {
DNSRecord.java 22 import javax.jmdns.impl.DNSOutgoing.MessageOutputStream;
89 abstract DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException;
384 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException {
484 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException {
600 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException {
794 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOExc (…)
    [all...]
JmDNSImpl.java     [all...]

Completed in 62 milliseconds