Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/user/
DCarUserService.java237 private final ArrayList<Integer> mBackgroundUsersToRestart = new ArrayList<>(); field in CarUserService
464 writer.println("BackgroundUsersToRestart: " + mBackgroundUsersToRestart); in dump()
1894 mBackgroundUsersToRestart.remove(user); in onUserUnlocked()
1895 mBackgroundUsersToRestart.add(0, user); in onUserUnlocked()
1898 if (mBackgroundUsersToRestart.size() > (mMaxRunningUsers - 1)) { in onUserUnlocked()
1899 int userToDrop = mBackgroundUsersToRestart.get( in onUserUnlocked()
1900 mBackgroundUsersToRestart.size() - 1); in onUserUnlocked()
1904 mBackgroundUsersToRestart.remove(mBackgroundUsersToRestart.size() - 1); in onUserUnlocked()
2213 users = new ArrayList<>(mBackgroundUsersToRestart); in startAllBackgroundUsersInGarageMode()
2215 mBackgroundUsersRestartedHere.addAll(mBackgroundUsersToRestart); in startAllBackgroundUsersInGarageMode()
[all …]