Searched refs:jmDNSImpl (Results 1 – 15 of 15) sorted by relevance
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSQuestion.java | 36 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 …]
|
D | DNSTaskStarter.java | 55 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()
|
D | SocketListener.java | 28 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/ |
D | RecordReaper.java | 23 public RecordReaper(JmDNSImpl jmDNSImpl) { in RecordReaper() argument 24 super(jmDNSImpl); in RecordReaper()
|
D | Responder.java | 36 public Responder(JmDNSImpl jmDNSImpl, DNSIncoming in, int port) { in Responder() argument 37 super(jmDNSImpl); in Responder()
|
D | DNSTask.java | 30 protected DNSTask(JmDNSImpl jmDNSImpl) { in DNSTask() argument 32 this._jmDNSImpl = jmDNSImpl; in DNSTask()
|
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/ |
D | TypeResolver.java | 30 public TypeResolver(JmDNSImpl jmDNSImpl) { in TypeResolver() argument 31 super(jmDNSImpl); in TypeResolver()
|
D | DNSResolverTask.java | 30 public DNSResolverTask(JmDNSImpl jmDNSImpl) { in DNSResolverTask() argument 31 super(jmDNSImpl); in DNSResolverTask()
|
D | ServiceResolver.java | 27 public ServiceResolver(JmDNSImpl jmDNSImpl, String type) { in ServiceResolver() argument 28 super(jmDNSImpl); in ServiceResolver()
|
D | ServiceInfoResolver.java | 26 public ServiceInfoResolver(JmDNSImpl jmDNSImpl, ServiceInfoImpl info) { in ServiceInfoResolver() argument 27 super(jmDNSImpl); in ServiceInfoResolver()
|
/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
D | Canceler.java | 25 public Canceler(JmDNSImpl jmDNSImpl) { in Canceler() argument 26 super(jmDNSImpl, 0); in Canceler()
|
D | Announcer.java | 27 public Announcer(JmDNSImpl jmDNSImpl) { in Announcer() argument 28 super(jmDNSImpl, defaultTTL()); in Announcer()
|
D | Renewer.java | 25 public Renewer(JmDNSImpl jmDNSImpl) { in Renewer() argument 26 super(jmDNSImpl, defaultTTL()); in Renewer()
|
D | DNSStateTask.java | 58 public DNSStateTask(JmDNSImpl jmDNSImpl, int ttl) { in DNSStateTask() argument 59 super(jmDNSImpl); in DNSStateTask()
|
D | Prober.java | 30 public Prober(JmDNSImpl jmDNSImpl) { in Prober() argument 31 super(jmDNSImpl, defaultTTL()); in Prober()
|