Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/net/
DVpnProfile.java155 public final boolean automaticNattKeepaliveTimerEnabled; // 28 field in VpnProfile
178 boolean automaticNattKeepaliveTimerEnabled, in VpnProfile() argument
185 this.automaticNattKeepaliveTimerEnabled = automaticNattKeepaliveTimerEnabled; in VpnProfile()
222 automaticNattKeepaliveTimerEnabled = in.readBoolean(); in VpnProfile()
275 out.writeBoolean(automaticNattKeepaliveTimerEnabled); in writeToParcel()
342 final boolean automaticNattKeepaliveTimerEnabled; in decode()
345 automaticNattKeepaliveTimerEnabled = Boolean.parseBoolean(values[28]); in decode()
348 automaticNattKeepaliveTimerEnabled = false; in decode()
354 automaticNattKeepaliveTimerEnabled, automaticIpVersionSelectionEnabled); in decode()
478 builder.append(VALUE_DELIMITER).append(automaticNattKeepaliveTimerEnabled); in encode()
[all …]
/frameworks/base/services/tests/VpnTests/java/com/android/internal/net/
DVpnProfileTest.java87 assertFalse(p.automaticNattKeepaliveTimerEnabled); in testDefaults()
275 assertFalse(decoded.automaticNattKeepaliveTimerEnabled); in testEncodeDecodeMissingAutomaticNattKeepaliveTimerEnabled()
/frameworks/base/core/java/android/net/
DIkev2VpnProfile.java163 boolean automaticNattKeepaliveTimerEnabled, in Ikev2VpnProfile() argument
192 mAutomaticNattKeepaliveTimerEnabled = automaticNattKeepaliveTimerEnabled; in Ikev2VpnProfile()
627 builder.setAutomaticNattKeepaliveTimerEnabled(profile.automaticNattKeepaliveTimerEnabled); in fromVpnProfile()