Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DComputingConcurrentHashMap.java114 enqueueNotification(entryKey, hash, value, RemovalCause.COLLECTED); in getOrCompute()
118 enqueueNotification(entryKey, hash, value, RemovalCause.EXPIRED); in getOrCompute()
190 enqueueNotification(key, hash, value, RemovalCause.REPLACED); in compute()
DMapMakerInternalMap.java2358 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { in enqueueNotification() method in MapMakerInternalMap.Segment
2359 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference().get(), cause); in enqueueNotification()
2362 void enqueueNotification(@Nullable K key, int hash, @Nullable V value, RemovalCause cause) { in enqueueNotification() method in MapMakerInternalMap.Segment
2526 enqueueNotification(key, hash, entryValue, RemovalCause.COLLECTED); in put()
2542 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in put()
2658 enqueueNotification(entryKey, hash, entryValue, RemovalCause.COLLECTED); in replace()
2669 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in replace()
2709 enqueueNotification(entryKey, hash, entryValue, RemovalCause.COLLECTED); in replace()
2719 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in replace()
2759 enqueueNotification(entryKey, hash, entryValue, cause); in remove()
[all …]
/external/turbine/javatests/com/google/turbine/lower/testdata/
Denumstat.test15 void enqueueNotification(RemovalCause cause) {
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2239 enqueueNotification(entryKey, hash, valueReference, RemovalCause.COLLECTED); in lockedGetOrLoad()
2243 enqueueNotification(entryKey, hash, valueReference, RemovalCause.EXPIRED); in lockedGetOrLoad()
2638 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { in enqueueNotification() method in LocalCache.Segment
2639 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference(), cause); in enqueueNotification()
2643 void enqueueNotification(@Nullable K key, int hash, ValueReference<K, V> valueReference, in enqueueNotification() method in LocalCache.Segment
2853 enqueueNotification(key, hash, valueReference, RemovalCause.COLLECTED); in put()
2872 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED); in put()
2999 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED); in replace()
3051 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED); in replace()
3142 enqueueNotification(key, hash, oldValueReference, cause); in storeLoadedValue()
[all …]