Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DSnapshotCache.java39 protected final ArrayMap<Integer, CacheEntry> mRunningCache = new ArrayMap<>(); field in SnapshotCache
49 mRunningCache.clear(); in clearRunningCache()
57 final CacheEntry entry = mRunningCache.get(id); in getSnapshot()
91 final CacheEntry entry = mRunningCache.get(id); in removeRunningEntry()
94 mRunningCache.remove(id); in removeRunningEntry()
106 for (int i = mRunningCache.size() - 1; i >= 0; i--) { in dump()
107 final CacheEntry entry = mRunningCache.valueAt(i); in dump()
108 pw.println(doublePrefix + "Entry token=" + mRunningCache.keyAt(i)); in dump()
DActivitySnapshotCache.java35 final CacheEntry entry = mRunningCache.get(hasCode); in putSnapshot()
41 mRunningCache.put(hasCode, new CacheEntry(snapshot, ar)); in putSnapshot()
DTaskSnapshotCache.java39 final CacheEntry entry = mRunningCache.get(task.mTaskId); in putSnapshot()
46 mRunningCache.put(task.mTaskId, new CacheEntry(snapshot, top)); in putSnapshot()