Searched refs:mAllowedAlgorithms (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/com/android/internal/net/ |
D | VpnProfile.java | 134 private List<String> mAllowedAlgorithms = new ArrayList<>(); // 19 field in VpnProfile 174 mAllowedAlgorithms = new ArrayList<>(); in VpnProfile() 175 in.readList(mAllowedAlgorithms, null); in VpnProfile() 189 return Collections.unmodifiableList(mAllowedAlgorithms); in getAllowedAlgorithms() 202 mAllowedAlgorithms = allowedAlgorithms; in setAllowedAlgorithms() 225 out.writeList(mAllowedAlgorithms); in writeToParcel() 296 profile.mAllowedAlgorithms = Arrays.asList(values[19].split(LIST_DELIMITER)); in decode() 347 builder.append(VALUE_DELIMITER).append(String.join(LIST_DELIMITER, mAllowedAlgorithms)); in encode() 444 proxy, mAllowedAlgorithms, isBypassable, isMetered, maxMtu, areAuthParamsInline, in hashCode() 473 && Objects.equals(mAllowedAlgorithms, other.mAllowedAlgorithms) in equals()
|
/frameworks/base/core/java/android/net/ |
D | Ikev2VpnProfile.java | 102 @NonNull private final List<String> mAllowedAlgorithms; field in Ikev2VpnProfile 142 mAllowedAlgorithms = Collections.unmodifiableList(new ArrayList<>(allowedAlgorithms)); in Ikev2VpnProfile() 189 validateAllowedAlgorithms(mAllowedAlgorithms); in validate() 319 return mAllowedAlgorithms; in getAllowedAlgorithms() 359 mAllowedAlgorithms, in hashCode() 383 && Objects.equals(mAllowedAlgorithms, other.mAllowedAlgorithms) in equals() 406 profile.setAllowedAlgorithms(mAllowedAlgorithms); in toVpnProfile() 640 @NonNull private List<String> mAllowedAlgorithms = DEFAULT_ALGORITHMS; field in Ikev2VpnProfile.Builder 870 mAllowedAlgorithms = algorithmNames; in setAllowedAlgorithms() 909 mAllowedAlgorithms, in build()
|