Searched refs:DNSEntry (Results 1 – 7 of 7) sorted by relevance
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSCache.java | 45 public class DNSCache extends AbstractMap<String, List<? extends DNSEntry>> { 49 private transient Set<Map.Entry<String, List<? extends DNSEntry>>> _entrySet = null; 94 public List<DNSEntry> get(Object key) { in get() 110 public Collection<List<? extends DNSEntry>> values() { in values() 118 public Set<Map.Entry<String, List<? extends DNSEntry>>> entrySet() { in entrySet() 134 public List<? extends DNSEntry> put(String key, List<? extends DNSEntry> value) { in put() 151 …ed static class _CacheEntry extends Object implements Map.Entry<String, List<? extends DNSEntry>> { 153 private List<? extends DNSEntry> _value; 161 protected _CacheEntry(String key, List<? extends DNSEntry> value) { in _CacheEntry() 170 protected _CacheEntry(Map.Entry<String, List<? extends DNSEntry>> entry) { in _CacheEntry() [all …]
|
D | DNSEntry.java | 22 public abstract class DNSEntry { class 41 DNSEntry(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { in DNSEntry() method in DNSEntry 63 if (obj instanceof DNSEntry) { in equals() 64 DNSEntry other = (DNSEntry) obj; in equals() 76 public boolean isSameEntry(DNSEntry entry) { in isSameEntry() 86 public boolean sameSubtype(DNSEntry other) { in sameSubtype() 204 public boolean isSameRecordClass(DNSEntry entry) { in isSameRecordClass() 214 public boolean isSameType(DNSEntry entry) { in isSameType() 251 public int compareTo(DNSEntry that) { in compareTo()
|
D | DNSListener.java | 27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record); in updateRecord()
|
D | DNSQuestion.java | 24 public class DNSQuestion extends DNSEntry { 188 public boolean isSameType(DNSEntry entry) { in isSameType() 262 boolean answeredBy(DNSEntry rec) { in answeredBy()
|
D | JmDNSImpl.java | 759 …DNSEntry pointerEntry = this.getCache().getDNSEntry(new DNSRecord.Pointer(type, DNSRecordClass.CLA… in getServiceInfoFromCache() 768 …DNSEntry serviceEntry = this.getCache().getDNSEntry(info.getQualifiedName(), DNSRecordType.TYPE_SR… in getServiceInfoFromCache() 777 …DNSEntry addressEntry = this.getCache().getDNSEntry(server, DNSRecordType.TYPE_A, DNSRecordClass.C… in getServiceInfoFromCache() 797 …DNSEntry textEntry = this.getCache().getDNSEntry(cachedInfo.getQualifiedName(), DNSRecordType.TYPE… in getServiceInfoFromCache() 944 Collection<DNSEntry> dnsEntryLits = this.getCache().allValues(); in addServiceListener() 945 for (DNSEntry entry : dnsEntryLits) { in addServiceListener() 1149 for (DNSEntry dnsEntry : this.getCache().getDNSEntryList(info.getKey())) { in makeServiceNameUnique() 1208 … for (DNSEntry dnsEntry : this.getCache().getDNSEntryList(question.getName().toLowerCase())) { in addListener() 1344 for (DNSEntry entry : this.getCache().getDNSEntryList(newRecord.getKey())) { in handleRecord() 1779 for (DNSEntry entry : this.getCache().allValues()) { in cleanCache()
|
D | ServiceInfoImpl.java | 865 public void updateRecord(DNSCache dnsCache, long now, DNSEntry rec) { in updateRecord() 892 …for (DNSEntry entry : dnsCache.getDNSEntryList(_server, DNSRecordType.TYPE_A, DNSRecordClass.CLASS… in updateRecord() 895 …for (DNSEntry entry : dnsCache.getDNSEntryList(_server, DNSRecordType.TYPE_AAAA, DNSRecordClass.CL… in updateRecord()
|
D | DNSRecord.java | 32 public abstract class DNSRecord extends DNSEntry { 439 public boolean isSameEntry(DNSEntry entry) { in isSameEntry()
|