Searched refs:oldEntry (Results 1 – 3 of 3) sorted by relevance
84 CacheEntry<K, V> oldEntry = map.put(key, entry); in put() local85 return (oldEntry == null) ? null : oldEntry.get(); in put()
379 CacheEntry<K,V> oldEntry = cacheMap.put(key, newEntry); in put() local380 if (oldEntry != null) { in put()381 oldEntry.invalidate(); in put()
661 TreeMapEntry<K,V> oldEntry = getEntry(key); in computeIfPresent() local662 if (oldEntry != null && oldEntry.value != null) { in computeIfPresent()663 return remapValue(oldEntry, key, remappingFunction); in computeIfPresent()