OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCacheMap
(Results
1 - 10
of
10
) sorted by null
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
AbstractCache.java
31
private final HashMap<K, CacheEntry<V>>
mCacheMap
;
34
mCacheMap
= new HashMap<K, CacheEntry<V>>();
42
if (
mCacheMap
.size() >= MAX_CACHED_ITEMS) {
54
mCacheMap
.put(key, cacheEntry);
57
Log.v(TAG, key + " cached, " +
mCacheMap
.size() + " items total.");
70
CacheEntry<V> cacheEntry =
mCacheMap
.get(key);
87
CacheEntry<V> v =
mCacheMap
.remove(key);
90
Log.v(TAG,
mCacheMap
.size() + " items cached.");
98
Log.v(TAG, "Purging cache, " +
mCacheMap
.size()
101
mCacheMap
.clear()
[
all
...]
/packages/apps/Messaging/src/com/android/messaging/mmslib/util/
AbstractCache.java
29
private final SimpleArrayMap<K, CacheEntry<V>>
mCacheMap
;
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
.clear()
[
all
...]
/tools/tradefederation/core/src/com/android/tradefed/build/
FileDownloadCache.java
57
private final Map<String, File>
mCacheMap
= new LinkedHashMap<String, File>();
59
/** the lock for <var>
mCacheMap
</var> */
122
mCacheMap
.put(cacheEntry.mRelPath, cacheEntry.mFile);
252
cachedFile =
mCacheMap
.remove(remotePath);
258
mCacheMap
.put(remotePath, cachedFile);
339
Iterator<String> keyIterator =
mCacheMap
.keySet().iterator();
345
File file =
mCacheMap
.get(remotePath);
385
return
mCacheMap
.get(remoteFilePath);
414
if (!
mCacheMap
.isEmpty()) {
415
return
mCacheMap
.keySet().iterator().next()
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java
118
private final HashMap<String, ContentValues>
mCacheMap
= new HashMap<String, ContentValues>();
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();
[
all
...]
/external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar
android-all-5.0.0_r2-robolectric-1.jar
android-all-5.1.1_r9-robolectric-1.jar
/prebuilts/misc/common/robolectric/lib/
android-all-4.4_r1-robolectric-1.jar
android-all-5.0.0_r2-robolectric-1.jar
android-all-6.0.0_r1-robolectric-0.jar
Completed in 609 milliseconds