Searched defs:otherUserId (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/os/
H A DUserManager.java1678 * @param otherUserId one of the two user ids to check.
1682 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) { argument
1684 return mService.isSameProfileGroup(userId, otherUserId);
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java654 public boolean isSameProfileGroup(int userId, int otherUserId) { argument
655 if (userId == otherUserId) return true;
658 return isSameProfileGroupLP(userId, otherUserId);
662 private boolean isSameProfileGroupLP(int userId, int otherUserId) { argument
668 UserInfo otherUserInfo = getUserInfoLU(otherUserId);

Completed in 122 milliseconds