Home | History | Annotate | Download | only in launcher3

Lines Matching refs:mCache

101     private final HashMap<CacheKey, CacheEntry> mCache =
195 synchronized (mCache) {
196 mCache.remove(new CacheKey(componentName, user));
205 for (CacheKey key: mCache.keySet()) {
212 mCache.remove(condemned);
220 synchronized (mCache) {
221 mCache.clear();
229 synchronized (mCache) {
230 Iterator<Entry<CacheKey, CacheEntry>> it = mCache.entrySet().iterator();
246 synchronized (mCache) {
261 synchronized (mCache) {
284 synchronized (mCache) {
314 synchronized (mCache) {
331 CacheEntry entry = mCache.get(cacheKey);
335 mCache.put(cacheKey, entry);
404 CacheEntry entry = mCache.get(cacheKey);
408 mCache.put(cacheKey, entry);
426 synchronized (mCache) {
428 for (CacheKey ck : mCache.keySet()) {
429 final CacheEntry e = mCache.get(ck);
549 if (mCache.remove(componentName) != null) {