Home
last modified time | relevance | path

Searched refs:jmDNSImpl (Results 1 – 15 of 15) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
DDNSQuestion.java36 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers() argument
37 …DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordCla… in addAnswers()
44 public boolean iAmTheOnlyOne(JmDNSImpl jmDNSImpl) { in iAmTheOnlyOne() argument
46 …return jmDNSImpl.getLocalHost().getName().equals(name) || jmDNSImpl.getServices().keySet().contain… in iAmTheOnlyOne()
60 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers() argument
61 …DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordCla… in addAnswers()
68 public boolean iAmTheOnlyOne(JmDNSImpl jmDNSImpl) { in iAmTheOnlyOne() argument
70 …return jmDNSImpl.getLocalHost().getName().equals(name) || jmDNSImpl.getServices().keySet().contain… in iAmTheOnlyOne()
93 public void addAnswers(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers) { in addAnswers() argument
95 for (ServiceInfo serviceInfo : jmDNSImpl.getServices().values()) { in addAnswers()
[all …]
DDNSTaskStarter.java55 public DNSTaskStarter newDNSTaskStarter(JmDNSImpl jmDNSImpl); in newDNSTaskStarter() argument
95 protected static DNSTaskStarter newDNSTaskStarter(JmDNSImpl jmDNSImpl) { in newDNSTaskStarter() argument
99 instance = delegate.newDNSTaskStarter(jmDNSImpl); in newDNSTaskStarter()
101 return (instance != null ? instance : new DNSTaskStarterImpl(jmDNSImpl)); in newDNSTaskStarter()
127 public DNSTaskStarter getStarter(JmDNSImpl jmDNSImpl) { in getStarter() argument
128 DNSTaskStarter starter = _instances.get(jmDNSImpl); in getStarter()
130 _instances.putIfAbsent(jmDNSImpl, newDNSTaskStarter(jmDNSImpl)); in getStarter()
131 starter = _instances.get(jmDNSImpl); in getStarter()
263 public DNSTaskStarterImpl(JmDNSImpl jmDNSImpl) { in DNSTaskStarterImpl() argument
265 _jmDNSImpl = jmDNSImpl; in DNSTaskStarterImpl()
DSocketListener.java28 SocketListener(JmDNSImpl jmDNSImpl) { in SocketListener() argument
29 super("SocketListener(" + (jmDNSImpl != null ? jmDNSImpl.getName() : "") + ")"); in SocketListener()
31 this._jmDNSImpl = jmDNSImpl; in SocketListener()
/external/jmdns/src/javax/jmdns/impl/tasks/
DRecordReaper.java23 public RecordReaper(JmDNSImpl jmDNSImpl) { in RecordReaper() argument
24 super(jmDNSImpl); in RecordReaper()
DResponder.java36 public Responder(JmDNSImpl jmDNSImpl, DNSIncoming in, int port) { in Responder() argument
37 super(jmDNSImpl); in Responder()
DDNSTask.java30 protected DNSTask(JmDNSImpl jmDNSImpl) { in DNSTask() argument
32 this._jmDNSImpl = jmDNSImpl; in DNSTask()
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DTypeResolver.java30 public TypeResolver(JmDNSImpl jmDNSImpl) { in TypeResolver() argument
31 super(jmDNSImpl); in TypeResolver()
DDNSResolverTask.java30 public DNSResolverTask(JmDNSImpl jmDNSImpl) { in DNSResolverTask() argument
31 super(jmDNSImpl); in DNSResolverTask()
DServiceResolver.java27 public ServiceResolver(JmDNSImpl jmDNSImpl, String type) { in ServiceResolver() argument
28 super(jmDNSImpl); in ServiceResolver()
DServiceInfoResolver.java26 public ServiceInfoResolver(JmDNSImpl jmDNSImpl, ServiceInfoImpl info) { in ServiceInfoResolver() argument
27 super(jmDNSImpl); in ServiceInfoResolver()
/external/jmdns/src/javax/jmdns/impl/tasks/state/
DCanceler.java25 public Canceler(JmDNSImpl jmDNSImpl) { in Canceler() argument
26 super(jmDNSImpl, 0); in Canceler()
DAnnouncer.java27 public Announcer(JmDNSImpl jmDNSImpl) { in Announcer() argument
28 super(jmDNSImpl, defaultTTL()); in Announcer()
DRenewer.java25 public Renewer(JmDNSImpl jmDNSImpl) { in Renewer() argument
26 super(jmDNSImpl, defaultTTL()); in Renewer()
DDNSStateTask.java58 public DNSStateTask(JmDNSImpl jmDNSImpl, int ttl) { in DNSStateTask() argument
59 super(jmDNSImpl); in DNSStateTask()
DProber.java30 public Prober(JmDNSImpl jmDNSImpl) { in Prober() argument
31 super(jmDNSImpl, defaultTTL()); in Prober()