Home | History | Annotate | Download | only in vpn2

Lines Matching defs:userId

10  * Holds packageName:userId pairs without any heavyweight fields.
14 public final int userId;
17 public AppVpnInfo(int userId, @NonNull String packageName) {
18 this.userId = userId;
28 result = that.userId - userId;
37 return userId == that.userId && Objects.equals(packageName, that.packageName);
44 return Objects.hash(packageName, userId);