Home
last modified time | relevance | path

Searched refs:areAuthParamsInline (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java143 public boolean areAuthParamsInline = false; // 23 field in VpnProfile
184 areAuthParamsInline = in.readBoolean(); in VpnProfile()
231 out.writeBoolean(areAuthParamsInline); in writeToParcel()
308 profile.areAuthParamsInline = Boolean.parseBoolean(values[23]); in decode()
371 builder.append(VALUE_DELIMITER).append(areAuthParamsInline); in encode()
453 proxy, mAllowedAlgorithms, isBypassable, isMetered, maxMtu, areAuthParamsInline, in hashCode()
486 && areAuthParamsInline == other.areAuthParamsInline in equals()
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/internal/net/
H A DVpnProfileTest.java77 assertFalse(p.areAuthParamsInline); in testDefaults()
109 p.areAuthParamsInline = true; in getSampleIkev2Profile()
/aosp12/frameworks/base/core/java/android/net/
H A DIkev2VpnProfile.java429 profile.areAuthParamsInline = true; in toVpnProfile()