Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/permission/
DPermissionsState.java663 final int otherUserId = other.mUserStates.keyAt(i); in PermissionData() local
665 mUserStates.put(otherUserId, new PermissionState(otherState)); in PermissionData()
/frameworks/base/core/java/android/os/
DUserManager.java2291 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) { in isSameProfileGroup() argument
2293 return mService.isSameProfileGroup(userId, otherUserId); in isSameProfileGroup()
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java754 public boolean isSameProfileGroup(int userId, int otherUserId) { in isSameProfileGroup() argument
755 if (userId == otherUserId) return true; in isSameProfileGroup()
757 return isSameProfileGroupNoChecks(userId, otherUserId); in isSameProfileGroup()
760 private boolean isSameProfileGroupNoChecks(int userId, int otherUserId) { in isSameProfileGroupNoChecks() argument
766 UserInfo otherUserInfo = getUserInfoLU(otherUserId); in isSameProfileGroupNoChecks()