Home
last modified time | relevance | path

Searched refs:JmDNSImpl (Results 1 – 23 of 23) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
DDNSQuestion.java14 import javax.jmdns.impl.JmDNSImpl.ServiceTypeEntry;
36 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers()
44 public boolean iAmTheOnlyOne(JmDNSImpl jmDNSImpl) { in iAmTheOnlyOne()
60 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers()
68 public boolean iAmTheOnlyOne(JmDNSImpl jmDNSImpl) { in iAmTheOnlyOne()
93 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers()
133 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers()
151 public boolean iAmTheOnlyOne(JmDNSImpl jmDNSImpl) { in iAmTheOnlyOne()
167 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers()
172 public boolean iAmTheOnlyOne(JmDNSImpl jmDNSImpl) { in iAmTheOnlyOne()
[all …]
DDNSRecord.java77 abstract boolean handleQuery(JmDNSImpl dns, long expirationTime); in handleQuery()
84 abstract boolean handleResponse(JmDNSImpl dns); in handleResponse()
89 …abstract DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgo… in addAnswer()
330 boolean handleQuery(JmDNSImpl dns, long expirationTime) { in handleQuery()
365 boolean handleResponse(JmDNSImpl dns) { in handleResponse()
384 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer()
404 public ServiceEvent getServiceEvent(JmDNSImpl dns) { in getServiceEvent()
466 boolean handleQuery(JmDNSImpl dns, long expirationTime) { in handleQuery()
473 boolean handleResponse(JmDNSImpl dns) { in handleResponse()
484 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer()
[all …]
DDNSTaskStarter.java39 private final ConcurrentMap<JmDNSImpl, DNSTaskStarter> _instances;
55 public DNSTaskStarter newDNSTaskStarter(JmDNSImpl jmDNSImpl); in newDNSTaskStarter()
62 _instances = new ConcurrentHashMap<JmDNSImpl, DNSTaskStarter>(20); in Factory()
95 protected static DNSTaskStarter newDNSTaskStarter(JmDNSImpl jmDNSImpl) { in newDNSTaskStarter()
127 public DNSTaskStarter getStarter(JmDNSImpl jmDNSImpl) { in getStarter()
140 private final JmDNSImpl _jmDNSImpl;
263 public DNSTaskStarterImpl(JmDNSImpl jmDNSImpl) { in DNSTaskStarterImpl()
DSocketListener.java23 private final JmDNSImpl _jmDNSImpl;
28 SocketListener(JmDNSImpl jmDNSImpl) { in SocketListener()
77 public JmDNSImpl getDns() { in getDns()
DDNSStatefulObject.java109 private volatile JmDNSImpl _dns;
132 public JmDNSImpl getDns() { in getDns()
136 protected void setDns(JmDNSImpl dns) { in setDns()
422 public JmDNSImpl getDns(); in getDns()
DServiceEventImpl.java50 public ServiceEventImpl(JmDNSImpl jmDNS, String type, String name, ServiceInfo info) { in ServiceEventImpl()
121 … return new ServiceEventImpl((JmDNSImpl) this.getDNS(), this.getType(), this.getName(), newInfo); in clone()
DHostInfo.java50 public HostInfoState(JmDNSImpl dns) { in HostInfoState()
66 public static HostInfo newHostInfo(InetAddress address, JmDNSImpl dns, String jmdnsName) { in newHostInfo()
121 private HostInfo(final InetAddress address, final String name, final JmDNSImpl dns) { in HostInfo()
287 public JmDNSImpl getDns() { in getDns()
DServiceInfoImpl.java110 public void setDns(JmDNSImpl dns) { in setDns()
922 JmDNSImpl dns = this.getDns(); in updateRecord()
1271 public void setDns(JmDNSImpl dns) { in setDns()
1279 public JmDNSImpl getDns() { in getDns()
DJmDNSImpl.java56 public class JmDNSImpl extends JmDNS implements DNSStatefulObject, DNSTaskStarter { class
57 private static Logger logger = Logger.getLogger(JmDNSImpl.class.getName());
368 …pomProperties.load(JmDNSImpl.class.getResourceAsStream("/META-INF/maven/javax.jmdns/jmdns/pom.prop… in main()
392 public JmDNSImpl(InetAddress address, String name) throws IOException { in JmDNSImpl() method in JmDNSImpl
555 public JmDNSImpl getDns() { in getDns()
2046 …info = ((JmDNSImpl) event.getDNS()).resolveServiceInfo(event.getType(), event.getName(), subtype, … in serviceAdded()
DJmmDNSImpl.java321 ServiceInfo info = ((JmDNSImpl) mDNS).getServices().get(target.getQualifiedName()); in textValueUpdated()
/external/jmdns/src/javax/jmdns/
DJmDNS.java13 import javax.jmdns.impl.JmDNSImpl;
60 return new JmDNSImpl(null, null); in create()
81 return new JmDNSImpl(addr, null); in create()
102 return new JmDNSImpl(null, name); in create()
137 return new JmDNSImpl(addr, name); in create()
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DTypeResolver.java12 import javax.jmdns.impl.JmDNSImpl;
13 import javax.jmdns.impl.JmDNSImpl.ServiceTypeEntry;
30 public TypeResolver(JmDNSImpl jmDNSImpl) { in TypeResolver()
DDNSResolverTask.java10 import javax.jmdns.impl.JmDNSImpl;
30 public DNSResolverTask(JmDNSImpl jmDNSImpl) { in DNSResolverTask()
DServiceResolver.java13 import javax.jmdns.impl.JmDNSImpl;
27 public ServiceResolver(JmDNSImpl jmDNSImpl, String type) { in ServiceResolver()
DServiceInfoResolver.java12 import javax.jmdns.impl.JmDNSImpl;
26 public ServiceInfoResolver(JmDNSImpl jmDNSImpl, ServiceInfoImpl info) { in ServiceInfoResolver()
/external/jmdns/src/javax/jmdns/impl/tasks/
DDNSTask.java12 import javax.jmdns.impl.JmDNSImpl;
25 private final JmDNSImpl _jmDNSImpl;
30 protected DNSTask(JmDNSImpl jmDNSImpl) { in DNSTask()
40 public JmDNSImpl getDns() { in getDns()
DRecordReaper.java11 import javax.jmdns.impl.JmDNSImpl;
23 public RecordReaper(JmDNSImpl jmDNSImpl) { in RecordReaper()
DResponder.java17 import javax.jmdns.impl.JmDNSImpl;
36 public Responder(JmDNSImpl jmDNSImpl, DNSIncoming in, int port) { in Responder()
83 … && !_in.isTruncated()) ? 0 : DNSConstants.RESPONSE_MIN_WAIT_INTERVAL + JmDNSImpl.getRandom().next… in start()
/external/jmdns/src/javax/jmdns/impl/tasks/state/
DProber.java14 import javax.jmdns.impl.JmDNSImpl;
30 public Prober(JmDNSImpl jmDNSImpl) { in Prober()
70 …timer.schedule(this, JmDNSImpl.getRandom().nextInt(1 + DNSConstants.PROBE_WAIT_INTERVAL), DNSConst… in start()
DCanceler.java13 import javax.jmdns.impl.JmDNSImpl;
25 public Canceler(JmDNSImpl jmDNSImpl) { in Canceler()
DAnnouncer.java13 import javax.jmdns.impl.JmDNSImpl;
27 public Announcer(JmDNSImpl jmDNSImpl) { in Announcer()
DRenewer.java13 import javax.jmdns.impl.JmDNSImpl;
25 public Renewer(JmDNSImpl jmDNSImpl) { in Renewer()
DDNSStateTask.java13 import javax.jmdns.impl.JmDNSImpl;
58 public DNSStateTask(JmDNSImpl jmDNSImpl, int ttl) { in DNSStateTask()