Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DComputingConcurrentHashMap.java116 enqueueNotification(entryKey, hash, value, RemovalCause.COLLECTED); in getOrCompute()
120 enqueueNotification(entryKey, hash, value, RemovalCause.EXPIRED); in getOrCompute()
192 enqueueNotification(key, hash, value, RemovalCause.REPLACED); in compute()
DMapMakerInternalMap.java2393 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { in enqueueNotification() method in MapMakerInternalMap.Segment
2394 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference().get(), cause); in enqueueNotification()
2397 void enqueueNotification(@Nullable K key, int hash, @Nullable V value, RemovalCause cause) { in enqueueNotification() method in MapMakerInternalMap.Segment
2561 enqueueNotification(key, hash, entryValue, RemovalCause.COLLECTED); in put()
2577 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in put()
2693 enqueueNotification(entryKey, hash, entryValue, RemovalCause.COLLECTED); in replace()
2704 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in replace()
2744 enqueueNotification(entryKey, hash, entryValue, RemovalCause.COLLECTED); in replace()
2754 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in replace()
2794 enqueueNotification(entryKey, hash, entryValue, cause); in remove()
[all …]
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2270 enqueueNotification(entryKey, hash, valueReference, RemovalCause.COLLECTED); in lockedGetOrLoad()
2274 enqueueNotification(entryKey, hash, valueReference, RemovalCause.EXPIRED); in lockedGetOrLoad()
2666 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { in enqueueNotification() method in LocalCache.Segment
2667 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference(), cause); in enqueueNotification()
2671 void enqueueNotification(@Nullable K key, int hash, ValueReference<K, V> valueReference, in enqueueNotification() method in LocalCache.Segment
2880 enqueueNotification(key, hash, valueReference, RemovalCause.COLLECTED); in put()
2899 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED); in put()
3026 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED); in replace()
3078 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED); in replace()
3161 enqueueNotification(key, hash, oldValueReference, cause); in storeLoadedValue()
[all …]