Home
last modified time | relevance | path

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

/external/jmdns/src/javax/jmdns/impl/
DDNSCache.java456 List<DNSEntry> aNewValue = null; in addDNSEntry() local
458 aNewValue = new ArrayList<DNSEntry>(oldEntry.getValue()); in addDNSEntry()
460 aNewValue = new ArrayList<DNSEntry>(); in addDNSEntry()
462 aNewValue.add(dnsEntry); in addDNSEntry()
465 oldEntry.setValue(aNewValue); in addDNSEntry()
467 this.entrySet().add(new _CacheEntry(dnsEntry.getKey(), aNewValue)); in addDNSEntry()
509 List<DNSEntry> aNewValue = null; in replaceDNSEntry() local
511 aNewValue = new ArrayList<DNSEntry>(oldEntry.getValue()); in replaceDNSEntry()
513 aNewValue = new ArrayList<DNSEntry>(); in replaceDNSEntry()
515 aNewValue.remove(existingDNSEntry); in replaceDNSEntry()
[all …]