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

/frameworks/base/core/java/android/os/
H A DUserManager.java2287 * @param otherUserId one of the two user ids to check.
2291 public boolean isSameProfileGroup(@UserIdInt int userId, int otherUserId) { argument
2293 return mService.isSameProfileGroup(userId, otherUserId);
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java754 public boolean isSameProfileGroup(int userId, int otherUserId) { argument
755 if (userId == otherUserId) return true;
757 return isSameProfileGroupNoChecks(userId, otherUserId);
760 private boolean isSameProfileGroupNoChecks(int userId, int otherUserId) { argument
766 UserInfo otherUserInfo = getUserInfoLU(otherUserId);

Completed in 96 milliseconds