Home
last modified time | relevance | path

Searched refs:DNSEntry (Results 1 – 7 of 7) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
DDNSCache.java45 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 …]
DDNSEntry.java22 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()
DDNSListener.java27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record); in updateRecord()
DDNSQuestion.java24 public class DNSQuestion extends DNSEntry {
188 public boolean isSameType(DNSEntry entry) { in isSameType()
262 boolean answeredBy(DNSEntry rec) { in answeredBy()
DJmDNSImpl.java759DNSEntry pointerEntry = this.getCache().getDNSEntry(new DNSRecord.Pointer(type, DNSRecordClass.CLA… in getServiceInfoFromCache()
768DNSEntry serviceEntry = this.getCache().getDNSEntry(info.getQualifiedName(), DNSRecordType.TYPE_SR… in getServiceInfoFromCache()
777DNSEntry addressEntry = this.getCache().getDNSEntry(server, DNSRecordType.TYPE_A, DNSRecordClass.C… in getServiceInfoFromCache()
797DNSEntry 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()
DServiceInfoImpl.java865 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()
DDNSRecord.java32 public abstract class DNSRecord extends DNSEntry {
439 public boolean isSameEntry(DNSEntry entry) { in isSameEntry()