Home | History | Annotate | Download | only in multiuser

Lines Matching refs:userId

90         for (int userId : mUsersToRemove) {
92 mUm.removeUser(userId);
242 private void switchUser(int userId) throws Exception {
244 registerUserSwitchObserver(latch, null, userId);
245 mAm.switchUser(userId);
249 private void stopUser(int userId, boolean force) throws Exception {
251 mIam.stopUser(userId, force /* force */, new IStopUserCallback.Stub() {
253 public void userStopped(int userId) throws RemoteException {
258 public void userStopAborted(int userId) throws RemoteException {
265 final CountDownLatch bootCompleteLatch, final int userId) throws Exception {
270 if (switchLatch != null && userId == newUserId) {
277 if (bootCompleteLatch != null && userId == newUserId) {
285 final int userId) {
290 Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL) == userId) {
294 }, UserHandle.of(userId), new IntentFilter(action), null, null);
297 private void removeUser(int userId) {
299 mUm.removeUser(userId);
302 while (mUm.getUserInfo(userId) != null &&
311 if (mUm.getUserInfo(userId) != null) {
312 mUsersToRemove.add(userId);