Home | History | Annotate | Download | only in vpn2

Lines Matching refs:packageName

10  * Holds packageName:userId pairs without any heavyweight fields.
15 public final String packageName;
17 public AppVpnInfo(int userId, @NonNull String packageName) {
19 this.packageName = Preconditions.checkNotNull(packageName);
26 int result = packageName.compareTo(that.packageName);
37 return userId == that.userId && Objects.equals(packageName, that.packageName);
44 return Objects.hash(packageName, userId);