Searched refs:removedUserId (Results 1 – 6 of 6) sorted by relevance
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/ |
H A D | AppStateTrackerImpl.java | 1011 void handleUserRemoved(int removedUserId) { in handleUserRemoved() argument 1018 if (userId == removedUserId) { in handleUserRemoved() 1023 cleanUpArrayForUser(mActiveUids, removedUserId); in handleUserRemoved() 1024 mExemptedBucketPackages.remove(removedUserId); in handleUserRemoved() 1028 private void cleanUpArrayForUser(SparseBooleanArray array, int removedUserId) { in cleanUpArrayForUser() argument 1033 if (userId == removedUserId) { in cleanUpArrayForUser()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationLockscreenUserManagerImpl.java | 136 int removedUserId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1); 137 if (removedUserId != -1) { 139 listener.onUserRemoved(removedUserId);
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/domain/interactor/ |
H A D | GuestUserInteractorTest.kt | 209 val removedUserId = 310 regex 211 repository.lastSelectedNonGuestUserId = removedUserId
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | Bubbles.java | 286 void onUserRemoved(int removedUserId); in onUserRemoved() argument
|
H A D | BubbleController.java | 639 public void onUserRemoved(int removedUserId) { in onUserRemoved() argument 640 UserInfo parent = mUserManager.getProfileParent(removedUserId); in onUserRemoved() 642 mBubbleData.removeBubblesForUser(removedUserId); in onUserRemoved() 646 mDataRepository.removeBubblesForUser(removedUserId, parentUserId); in onUserRemoved() 2437 public void onUserRemoved(int removedUserId) { in onUserRemoved() argument 2439 BubbleController.this.onUserRemoved(removedUserId); in onUserRemoved()
|
/aosp14/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | UserManagerService.java | 5840 private void sendProfileRemovedBroadcast(int parentUserId, int removedUserId, String userType) { 5842 sendManagedProfileRemovedBroadcast(parentUserId, removedUserId); 5846 parentUserId, removedUserId); 5858 private void sendManagedProfileRemovedBroadcast(int parentUserId, int removedUserId) { 5860 managedProfileIntent.putExtra(Intent.EXTRA_USER, UserHandle.of(removedUserId)); 5861 managedProfileIntent.putExtra(Intent.EXTRA_USER_HANDLE, removedUserId);
|