Searched defs:enqueueNotification (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java2270 enqueueNotification(entryKey, hash, valueReference, RemovalCause.COLLECTED);
2274 enqueueNotification(entryKey, hash, valueReference, RemovalCause.EXPIRED);
2666 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { method in class:LocalCache.Segment
2667 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference(), cause);
2671 void enqueueNotification(@Nullable K key, int hash, ValueReference<K, V> valueReference, method in class:LocalCache.Segment
2880 enqueueNotification(key, hash, valueReference, RemovalCause.COLLECTED);
2899 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED);
3026 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED);
3078 enqueueNotification(key, hash, valueReference, RemovalCause.REPLACED);
3161 enqueueNotification(ke
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java2393 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { method in class:MapMakerInternalMap.Segment
2394 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference().get(), cause);
2397 void enqueueNotification(@Nullable K key, int hash, @Nullable V value, RemovalCause cause) { method in class:MapMakerInternalMap.Segment
2561 enqueueNotification(key, hash, entryValue, RemovalCause.COLLECTED);
2577 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED);
2693 enqueueNotification(entryKey, hash, entryValue, RemovalCause.COLLECTED);
2704 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED);
2744 enqueueNotification(entryKey, hash, entryValue, RemovalCause.COLLECTED);
2754 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED);
2794 enqueueNotification(entryKe
[all...]

Completed in 867 milliseconds