Home
last modified time | relevance | path

Searched refs:mAllowedAlgorithms (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/net/
DVpnProfile.java145 private List<String> mAllowedAlgorithms = new ArrayList<>(); // 19 field in VpnProfile
209 mAllowedAlgorithms = new ArrayList<>(); in VpnProfile()
210 in.readList(mAllowedAlgorithms, null, java.lang.String.class); in VpnProfile()
232 return Collections.unmodifiableList(mAllowedAlgorithms); in getAllowedAlgorithms()
242 mAllowedAlgorithms = allowedAlgorithms; in setAllowedAlgorithms()
265 out.writeList(mAllowedAlgorithms); in writeToParcel()
390 profile.mAllowedAlgorithms = new ArrayList<>(); in decode()
392 profile.mAllowedAlgorithms.add(URLDecoder.decode(algo, DEFAULT_ENCODING)); in decode()
449 for (String algo : mAllowedAlgorithms) { in encode()
560 proxy, mAllowedAlgorithms, isBypassable, isMetered, maxMtu, areAuthParamsInline, in hashCode()
[all …]
/frameworks/base/core/java/android/net/
DIkev2VpnProfile.java135 @NonNull private final List<String> mAllowedAlgorithms; field in Ikev2VpnProfile
181 mAllowedAlgorithms = Collections.unmodifiableList(new ArrayList<>(allowedAlgorithms)); in Ikev2VpnProfile()
238 validateAllowedAlgorithms(mAllowedAlgorithms); in validate()
396 return mAllowedAlgorithms; in getAllowedAlgorithms()
452 mAllowedAlgorithms, in hashCode()
481 && Objects.equals(mAllowedAlgorithms, other.mAllowedAlgorithms) in equals()
522 profile.setAllowedAlgorithms(mAllowedAlgorithms); in toVpnProfile()
806 @NonNull private List<String> mAllowedAlgorithms = DEFAULT_ALGORITHMS; field in Ikev2VpnProfile.Builder
1101 mAllowedAlgorithms = algorithmNames; in setAllowedAlgorithms()
1197 mAllowedAlgorithms, in build()