/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/net/ |
D | IkeConnectionController.java | 201 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/ |
D | IkeNattKeepalive.java | 60 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/ |
D | AbstractSessionStateMachine.java | 110 String name, IkeContext ikeContext, Executor userCbExecutor) { in AbstractSessionStateMachine() argument 111 super(name, ikeContext.getLooper()); in AbstractSessionStateMachine() 113 mIkeContext = ikeContext; in AbstractSessionStateMachine()
|
D | IkeSessionStateMachine.java | 766 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()
|
D | ChildSessionStateMachine.java | 254 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/ |
D | IkeSessionStateMachineTest.java | 937 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()
|