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

/external/jmdns/src/javax/jmdns/impl/
H A DDNSListener.java27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record);
H A DDNSCache.java29 * DNSEntry entry = i.next();
38 * DNSEntry entry = i.next();
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) {
110 public Collection<List<? extends DNSEntry>> values() {
118 public Set<Map.Entry<String, List<? extends DNSEntry>>> entrySet() {
134 public List<? extends DNSEntry> put(String key, List<? extends DNSEntry> value) {
151 protected static class _CacheEntry extends Object implements Map.Entry<String, List<? extends DNSEntry>> {
[all...]
H A DDNSEntry.java22 public abstract class DNSEntry { class
23 // private static Logger logger = Logger.getLogger(DNSEntry.class.getName());
41 DNSEntry(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { method in class:DNSEntry
63 if (obj instanceof DNSEntry) {
64 DNSEntry other = (DNSEntry) obj;
76 public boolean isSameEntry(DNSEntry entry) {
86 public boolean sameSubtype(DNSEntry other) {
204 public boolean isSameRecordClass(DNSEntry entry) {
214 public boolean isSameType(DNSEntry entr
[all...]
H A DDNSQuestion.java24 public class DNSQuestion extends DNSEntry {
188 public boolean isSameType(DNSEntry entry) {
262 boolean answeredBy(DNSEntry rec) {
292 * @see javax.jmdns.impl.DNSEntry#isStale(long)
301 * @see javax.jmdns.impl.DNSEntry#isExpired(long)
321 * @see javax.jmdns.impl.DNSEntry#toString(java.lang.StringBuilder)
H A DJmDNSImpl.java88 * Cache for DNSEntry's.
759 DNSEntry pointerEntry = this.getCache().getDNSEntry(new DNSRecord.Pointer(type, DNSRecordClass.CLASS_ANY, false, 0, info.getQualifiedName()));
768 DNSEntry serviceEntry = this.getCache().getDNSEntry(info.getQualifiedName(), DNSRecordType.TYPE_SRV, DNSRecordClass.CLASS_ANY);
777 DNSEntry addressEntry = this.getCache().getDNSEntry(server, DNSRecordType.TYPE_A, DNSRecordClass.CLASS_ANY);
797 DNSEntry textEntry = this.getCache().getDNSEntry(cachedInfo.getQualifiedName(), DNSRecordType.TYPE_TXT, DNSRecordClass.CLASS_ANY);
944 Collection<DNSEntry> dnsEntryLits = this.getCache().allValues();
945 for (DNSEntry entry : dnsEntryLits) {
1149 for (DNSEntry dnsEntry : this.getCache().getDNSEntryList(info.getKey())) {
1208 for (DNSEntry dnsEntry : this.getCache().getDNSEntryList(question.getName().toLowerCase())) {
1344 for (DNSEntry entr
[all...]
H A DServiceInfoImpl.java865 public void updateRecord(DNSCache dnsCache, long now, DNSEntry rec) {
892 for (DNSEntry entry : dnsCache.getDNSEntryList(_server, DNSRecordType.TYPE_A, DNSRecordClass.CLASS_IN)) {
895 for (DNSEntry entry : dnsCache.getDNSEntryList(_server, DNSRecordType.TYPE_AAAA, DNSRecordClass.CLASS_IN)) {
H A DDNSRecord.java32 public abstract class DNSRecord extends DNSEntry {
53 * @see javax.jmdns.impl.DNSEntry#equals(java.lang.Object)
136 * @see javax.jmdns.impl.DNSEntry#isExpired(long)
145 * @see javax.jmdns.impl.DNSEntry#isStale(long)
436 * @see javax.jmdns.impl.DNSEntry#isSameEntry(javax.jmdns.impl.DNSEntry)
439 public boolean isSameEntry(DNSEntry entry) {

Completed in 219 milliseconds