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/
DPermissionsState.java618 final int otherUserId = other.mUserStates.keyAt(i); in PermissionData() local
620 mUserStates.put(otherUserId, new PermissionState(otherState)); in PermissionData()
DUserManagerService.java653 public boolean isSameProfileGroup(int userId, int otherUserId) { in isSameProfileGroup() argument
654 if (userId == otherUserId) return true; in isSameProfileGroup()
657 return isSameProfileGroupLP(userId, otherUserId); in isSameProfileGroup()
661 private boolean isSameProfileGroupLP(int userId, int otherUserId) { in isSameProfileGroupLP() argument
667 UserInfo otherUserInfo = getUserInfoLU(otherUserId); in isSameProfileGroupLP()
/frameworks/base/core/java/android/os/
DUserManager.java1682 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) { in isSameProfileGroup() argument
1684 return mService.isSameProfileGroup(userId, otherUserId); in isSameProfileGroup()