Home
last modified time | relevance | path

Searched refs:ikeContext (Results 1 – 6 of 6) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/net/
DIkeConnectionController.java201 IkeContext ikeContext, Config config, Dependencies dependencies) { in IkeConnectionController() argument
202 mIkeContext = ikeContext; in IkeConnectionController()
234 public IkeConnectionController(IkeContext ikeContext, Config config) { in IkeConnectionController() argument
235 this(ikeContext, config, new Dependencies()); in IkeConnectionController()
305 IkeContext ikeContext, KeepaliveConfig keepaliveConfig) throws IOException { in newIkeNattKeepalive() argument
308 ikeContext, in newIkeNattKeepalive()
309 ikeContext.getContext().getSystemService(ConnectivityManager.class), in newIkeNattKeepalive()
364 IkeContext ikeContext, IkeSessionParams ikeParams, NetworkCapabilities nc) { in getKeepaliveDelaySec() argument
376 ikeContext.getDeviceConfigPropertyInt( in getKeepaliveDelaySec()
390 IkeContext ikeContext, in buildInitialKeepaliveAlarmConfig() argument
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/keepalive/
DIkeNattKeepalive.java60 IkeContext ikeContext, in IkeNattKeepalive() argument
64 this(ikeContext, connectMgr, nattKeepaliveConfig, new Dependencies()); in IkeNattKeepalive()
68 IkeContext ikeContext, in IkeNattKeepalive() argument
74 mContext = ikeContext.getContext(); in IkeNattKeepalive()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DAbstractSessionStateMachine.java110 String name, IkeContext ikeContext, Executor userCbExecutor) { in AbstractSessionStateMachine() argument
111 super(name, ikeContext.getLooper()); in AbstractSessionStateMachine()
113 mIkeContext = ikeContext; in AbstractSessionStateMachine()
DIkeSessionStateMachine.java766 IkeContext ikeContext, IEapCallback cb, EapSessionConfig eapSessionConfig) { in newEapAuthenticator() argument
767 return new EapAuthenticator(ikeContext, cb, eapSessionConfig); in newEapAuthenticator()
772 IkeContext ikeContext, in newChildSessionStateMachine() argument
778 ikeContext, childSessionSmConfig, userCallbacks, childSmCallback); in newChildSessionStateMachine()
785 IkeContext ikeContext, IkeConnectionController.Config config) { in newIkeConnectionController() argument
786 return new IkeConnectionController(ikeContext, config); in newIkeConnectionController()
DChildSessionStateMachine.java254 IkeContext ikeContext, in ChildSessionStateMachine() argument
258 super(TAG, ikeContext, childSmConfig.userCbExecutor); in ChildSessionStateMachine()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachineTest.java937 IkeContext ikeContext = in makeAndStartIkeSession() local
985 .when(ikeContext) in makeAndStartIkeSession()
990 ikeContext, in makeAndStartIkeSession()
2276 IkeContext ikeContext = ikeContextCaptor.getValue(); in verifyMakeChildAndReturnChildSmCb() local
2277 assertEquals(mLooper.getLooper(), ikeContext.getLooper()); in verifyMakeChildAndReturnChildSmCb()
2278 assertEquals(mSpyContext, ikeContext.getContext()); in verifyMakeChildAndReturnChildSmCb()
3601 IkeContext ikeContext = ikeContextCaptor.getValue(); in verifyEapAuthenticatorCreatedAndGetCallback() local
3602 assertEquals(mIkeSessionStateMachine.getHandler().getLooper(), ikeContext.getLooper()); in verifyEapAuthenticatorCreatedAndGetCallback()
3603 assertEquals(mSpyContext, ikeContext.getContext()); in verifyEapAuthenticatorCreatedAndGetCallback()