Searched refs:CacheEntry (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DAbstractCache.java31 private final HashMap<K, CacheEntry<V>> mCacheMap;
34 mCacheMap = new HashMap<K, CacheEntry<V>>();
52 CacheEntry<V> cacheEntry = new CacheEntry<V>();
70 CacheEntry<V> cacheEntry = mCacheMap.get(key);
87 CacheEntry<V> v = mCacheMap.remove(key);
108 private static class CacheEntry<V> { class in class:AbstractCache
/frameworks/base/tools/aapt/
H A DResourceIdCache.cpp21 struct CacheEntry { struct
26 CacheEntry() {} function in struct:CacheEntry
27 CacheEntry(const android::String16& name, uint32_t resId) : hashedName(name), id(resId) { } function in struct:CacheEntry
30 static std::map< uint32_t, CacheEntry > mIdMap;
64 std::map<uint32_t, CacheEntry>::iterator item = mIdMap.find(hashcode);
92 mIdMap[hashcode] = CacheEntry(hashedName, resId);

Completed in 86 milliseconds