Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/net/
DVpnProfile.java156 public final boolean automaticIpVersionSelectionEnabled; // 29 field in VpnProfile
179 boolean automaticIpVersionSelectionEnabled) { in VpnProfile() argument
186 this.automaticIpVersionSelectionEnabled = automaticIpVersionSelectionEnabled; in VpnProfile()
223 automaticIpVersionSelectionEnabled = in.readBoolean(); in VpnProfile()
276 out.writeBoolean(automaticIpVersionSelectionEnabled); in writeToParcel()
343 final boolean automaticIpVersionSelectionEnabled; in decode()
346 automaticIpVersionSelectionEnabled = Boolean.parseBoolean(values[29]); in decode()
349 automaticIpVersionSelectionEnabled = false; in decode()
354 automaticNattKeepaliveTimerEnabled, automaticIpVersionSelectionEnabled); in decode()
479 builder.append(VALUE_DELIMITER).append(automaticIpVersionSelectionEnabled); in encode()
[all …]
/frameworks/base/services/tests/VpnTests/java/com/android/internal/net/
DVpnProfileTest.java88 assertFalse(p.automaticIpVersionSelectionEnabled); in testDefaults()
284 assertFalse(decoded.automaticIpVersionSelectionEnabled); in testEncodeDecodeMissingAutomaticIpVersionSelectionEnabled()
/frameworks/base/core/java/android/net/
DIkev2VpnProfile.java164 boolean automaticIpVersionSelectionEnabled) { in Ikev2VpnProfile() argument
193 mAutomaticIpVersionSelectionEnabled = automaticIpVersionSelectionEnabled; in Ikev2VpnProfile()
628 builder.setAutomaticIpVersionSelectionEnabled(profile.automaticIpVersionSelectionEnabled); in fromVpnProfile()