Home
last modified time | relevance | path

Searched refs:mActivityInfoCache (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/model/
DRecentsTaskLoader.java70 private final LruCache<ComponentName, ActivityInfo> mActivityInfoCache; field in RecentsTaskLoader
94 mActivityInfoCache.remove(key.getComponent());
114 mActivityInfoCache = new LruCache<>(numRecentTasks); in RecentsTaskLoader()
116 mIconLoader = createNewIconLoader(context, mIconCache, mActivityInfoCache); in RecentsTaskLoader()
227 mActivityInfoCache.trimToSize(Math.max(1, in onTrimMemory()
234 mActivityInfoCache.trimToSize(Math.max(1, in onTrimMemory()
241 mActivityInfoCache.evictAll(); in onTrimMemory()
256 Map<ComponentName, ActivityInfo> activityInfoCache = mActivityInfoCache.snapshot(); in onPackageChanged()
262 mActivityInfoCache.remove(cn); in onPackageChanged()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
DIconLoader.java43 protected final LruCache<ComponentName, ActivityInfo> mActivityInfoCache; field in IconLoader
49 mActivityInfoCache = activityInfoCache; in IconLoader()
60 ActivityInfo activityInfo = mActivityInfoCache.get(cn); in getAndUpdateActivityInfo()
68 mActivityInfoCache.put(cn, activityInfo); in getAndUpdateActivityInfo()