Home
last modified time | relevance | path

Searched refs:underpinnedNetwork (Results 1 – 17 of 17) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/keepalive/
DIkeNattKeepalive.java97 public final Network underpinnedNetwork; field in IkeNattKeepalive.KeepaliveConfig
106 Network underpinnedNetwork, in KeepaliveConfig() argument
113 this.underpinnedNetwork = underpinnedNetwork; in KeepaliveConfig()
228 nattKeepaliveConfig.underpinnedNetwork, in createHardwareKeepaliveImpl()
DHardwareKeepaliveImpl.java72 Network underpinnedNetwork, in HardwareKeepaliveImpl() argument
79 mUnderpinnedNetwork = underpinnedNetwork; in HardwareKeepaliveImpl()
/packages/modules/Connectivity/framework/src/android/net/
DTcpSocketKeepalive.java53 protected void startImpl(int intervalSec, int flags, Network underpinnedNetwork) { in startImpl() argument
59 if (underpinnedNetwork != null) { in startImpl()
61 + this.getClass().getSimpleName() + " : " + underpinnedNetwork); in startImpl()
DSocketKeepalive.java383 int intervalSec, @StartFlags int flags, @Nullable Network underpinnedNetwork) { in start() argument
384 startImpl(intervalSec, flags, underpinnedNetwork); in start()
389 Network underpinnedNetwork); in startImpl() argument
DNattSocketKeepalive.java74 protected void startImpl(int intervalSec, int flags, Network underpinnedNetwork) { in startImpl() argument
85 underpinnedNetwork); in startImpl()
DIConnectivityManager.aidl193 String dstAddr, boolean automaticOnOffKeepalives, in Network underpinnedNetwork); in startNattKeepaliveWithFd() argument
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/shim/
DShimUtilsU.java33 int keepaliveOptions, Network underpinnedNetwork) { in startKeepalive() argument
34 keepalive.start(keepaliveDelaySeconds, keepaliveOptions, underpinnedNetwork); in startKeepalive()
DShimUtils.java85 int keepaliveOptions, Network underpinnedNetwork); in startKeepalive() argument
DShimUtilsRAndS.java71 int keepaliveOptions, Network underpinnedNetwork) { in startKeepalive() argument
/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DAutomaticOnOffKeepaliveTracker.java211 final boolean autoOnOff, @Nullable Network underpinnedNetwork) in AutomaticOnOffKeepalive() argument
215 mUnderpinnedNetwork = underpinnedNetwork; in AutomaticOnOffKeepalive()
609 int dstPort, boolean automaticOnOffKeepalives, @Nullable Network underpinnedNetwork) { in startNattKeepalive() argument
615 automaticOnOffKeepalives, underpinnedNetwork); in startNattKeepalive()
620 + " underpinned=" + underpinnedNetwork); in startNattKeepalive()
643 @Nullable Network underpinnedNetwork) { in startNattKeepalive() argument
649 automaticOnOffKeepalives, underpinnedNetwork); in startNattKeepalive()
654 + " underpinned=" + underpinnedNetwork); in startNattKeepalive()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSession.java393 public void setUnderpinnedNetwork(@NonNull Network underpinnedNetwork) { in setUnderpinnedNetwork() argument
394 mIkeSessionStateMachine.setUnderpinnedNetwork(Objects.requireNonNull(underpinnedNetwork)); in setUnderpinnedNetwork()
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DAutomaticOnOffKeepaliveTrackerTest.java242 public final Network underpinnedNetwork; field in AutomaticOnOffKeepaliveTrackerTest.TestKeepaliveInfo
255 underpinnedNetwork = mock(Network.class); in TestKeepaliveInfo()
456 testInfo.underpinnedNetwork); in doStartNattKeepalive()
509 assertEquals(testInfo.underpinnedNetwork, mTestHandler.mLastAutoKi.getUnderpinnedNetwork()); in testAlarm()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/net/
DIkeConnectionControllerTest.java1471 final Network underpinnedNetwork = mock(Network.class); in testOnUnderpinnedNetworkSetByUser() local
1472 mIkeConnectionCtrl.onUnderpinnedNetworkSetByUser(underpinnedNetwork); in testOnUnderpinnedNetworkSetByUser()
1474 assertEquals(underpinnedNetwork, mIkeConnectionCtrl.getUnderpinnedNetwork()); in testOnUnderpinnedNetworkSetByUser()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/net/
DIkeConnectionController.java708 public void onUnderpinnedNetworkSetByUser(final Network underpinnedNetwork) in onUnderpinnedNetworkSetByUser() argument
710 mUnderpinnedNetwork = underpinnedNetwork; in onUnderpinnedNetworkSetByUser()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/keepalive/
DIkeNattKeepaliveTest.java300 keepaliveConfig.underpinnedNetwork, in createCopyWithNewUnderlyingNetwork()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java954 public void setUnderpinnedNetwork(@NonNull Network underpinnedNetwork) { in setUnderpinnedNetwork() argument
955 Objects.requireNonNull(underpinnedNetwork); in setUnderpinnedNetwork()
956 sendMessage(CMD_SET_UNDERPINNED_NETWORK, underpinnedNetwork); in setUnderpinnedNetwork()
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java6684 final Network underpinnedNetwork = ki.getUnderpinnedNetwork();
6690 if (n.everConnected() && n.network.equals(underpinnedNetwork)) {
6701 underpinnedNetwork.netId);
11636 String dstAddr, boolean automaticOnOffKeepalives, Network underpinnedNetwork) {
11642 automaticOnOffKeepalives, underpinnedNetwork);