Home
last modified time | relevance | path

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

/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DStartingWindowController.java85 private final SparseIntArray mTaskBackgroundColors = new SparseIntArray(); field in StartingWindowController
146 synchronized (mTaskBackgroundColors) { in addStartingWindow()
147 mTaskBackgroundColors.append(taskId, color); in addStartingWindow()
193 synchronized (mTaskBackgroundColors) { in removeStartingWindow()
194 mTaskBackgroundColors.delete(removalInfo.taskId); in removeStartingWindow()
205 synchronized (mTaskBackgroundColors) { in clearAllWindows()
206 mTaskBackgroundColors.clear(); in clearAllWindows()
228 synchronized (mTaskBackgroundColors) { in getBackgroundColor()
229 final int index = mTaskBackgroundColors.indexOfKey(taskInfo.taskId); in getBackgroundColor()
231 return mTaskBackgroundColors.valueAt(index); in getBackgroundColor()