Searched defs:mCacheMap (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/mmslib/util/
H A DAbstractCache.java29 private final SimpleArrayMap<K, CacheEntry<V>> mCacheMap; field in class:AbstractCache
32 mCacheMap = new SimpleArrayMap<K, CacheEntry<V>>();
40 if (mCacheMap.size() >= MAX_CACHED_ITEMS) {
52 mCacheMap.put(key, cacheEntry);
55 Log.v(TAG, key + " cached, " + mCacheMap.size() + " items total.");
68 CacheEntry<V> cacheEntry = mCacheMap.get(key);
85 CacheEntry<V> v = mCacheMap.remove(key);
88 Log.v(TAG, mCacheMap.size() + " items cached.");
96 Log.v(TAG, "Purging cache, " + mCacheMap.size()
99 mCacheMap
[all...]
/packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/cache/
H A DCacheManager.java64 private final Map<String, SortedMap<Long, SampleCache>> mCacheMap = new ArrayMap<>(); field in class:CacheManager
305 mCacheMap.clear();
330 SortedMap<Long, SampleCache> map = mCacheMap.get(id);
333 mCacheMap.put(id, map);
353 SortedMap<Long, SampleCache> map = mCacheMap.get(trackId);
356 mCacheMap.put(trackId, map);
375 SortedMap<Long, SampleCache> map = mCacheMap.get(id);
400 for (Map.Entry<String, SortedMap<Long, SampleCache>> entry : mCacheMap.entrySet()) {
467 SortedMap<Long, SampleCache> map = mCacheMap.get(audio.first);
475 SortedMap<Long, SampleCache> map = mCacheMap
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java118 private final HashMap<String, ContentValues> mCacheMap = new HashMap<String, ContentValues>(); field in class:ConversationCursor
668 mCacheMap.entrySet().iterator();
682 LogUtils.e(LOG_TAG, "null updateTime from mCacheMap for key: %s", key);
699 LogUtils.e(LOG_TAG, "null ContentValues from mCacheMap for key: %s", key);
743 mCacheMap.entrySet().iterator();
785 mCacheMap.entrySet().iterator();
922 ContentValues map = mCacheMap.get(uriString);
926 mCacheMap.put(uriString, map);
974 ContentValues uriMap = mCacheMap.get(uri);
1112 mCacheMap
[all...]

Completed in 136 milliseconds