Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DSnapshotCache.java32 protected final ArrayMap<Integer, CacheEntry> mRunningCache = new ArrayMap<>(); field in SnapshotCache
42 mRunningCache.clear(); in clearRunningCache()
49 final CacheEntry entry = mRunningCache.get(id); in getSnapshot()
78 final CacheEntry entry = mRunningCache.get(id); in removeRunningEntry()
81 mRunningCache.remove(id); in removeRunningEntry()
89 for (int i = mRunningCache.size() - 1; i >= 0; i--) { in dump()
90 final CacheEntry entry = mRunningCache.valueAt(i); in dump()
91 pw.println(doublePrefix + "Entry token=" + mRunningCache.keyAt(i)); in dump()
H A DActivitySnapshotCache.java33 final CacheEntry entry = mRunningCache.get(hasCode); in putSnapshot()
38 mRunningCache.put(hasCode, new CacheEntry(snapshot, ar)); in putSnapshot()
H A DTaskSnapshotCache.java37 final CacheEntry entry = mRunningCache.get(task.mTaskId); in putSnapshot()
43 mRunningCache.put(task.mTaskId, new CacheEntry(snapshot, top)); in putSnapshot()