Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DTaskIconCache.java66 private final TaskKeyLruCache<TaskCacheEntry> mIconCache;
112 CancellableTask<TaskCacheEntry> request = new CancellableTask<TaskCacheEntry>() { in updateIconInBackground()
114 public TaskCacheEntry getResultOnBg() { in updateIconInBackground()
119 public void handleResult(TaskCacheEntry result) { in updateIconInBackground()
147 private TaskCacheEntry getCacheEntry(Task task) { in getCacheEntry()
148 TaskCacheEntry entry = mIconCache.getAndInvalidateIfModified(task.key); in getCacheEntry()
158 entry = new TaskCacheEntry(); in getCacheEntry()
275 private static class TaskCacheEntry { class in TaskIconCache