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.java135 private List<String> mAllowedAlgorithms = new ArrayList<>(); // 19 field in VpnProfile
175 mAllowedAlgorithms = new ArrayList<>(); in VpnProfile()
176 in.readList(mAllowedAlgorithms, null); in VpnProfile()
190 return Collections.unmodifiableList(mAllowedAlgorithms); in getAllowedAlgorithms()
203 mAllowedAlgorithms = allowedAlgorithms; in setAllowedAlgorithms()
226 out.writeList(mAllowedAlgorithms); in writeToParcel()
297 profile.mAllowedAlgorithms = Arrays.asList(values[19].split(LIST_DELIMITER)); in decode()
348 builder.append(VALUE_DELIMITER).append(String.join(LIST_DELIMITER, mAllowedAlgorithms)); in encode()
445 proxy, mAllowedAlgorithms, isBypassable, isMetered, maxMtu, areAuthParamsInline, in hashCode()
474 && Objects.equals(mAllowedAlgorithms, other.mAllowedAlgorithms) in equals()
/frameworks/base/core/java/android/net/
DIkev2VpnProfile.java102 @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()