Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSession.java204 @NonNull ChildSessionCallback childSessionCallback) { in openChildSession() argument
209 mIkeSessionStateMachine.openChildSession(childSessionParams, childSessionCallback); in openChildSession()
224 public void closeChildSession(@NonNull ChildSessionCallback childSessionCallback) { in closeChildSession() argument
225 mIkeSessionStateMachine.closeChildSession(childSessionCallback); in closeChildSession()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java646 ChildSessionParams childSessionParams, ChildSessionCallback childSessionCallback) { in openChildSession() argument
647 if (childSessionCallback == null) { in openChildSession()
651 if (hasChildSessionCallback(childSessionCallback)) { in openChildSession()
656 childSessionParams, childSessionCallback, false /*isFirstChild*/); in openChildSession()
660 CMD_LOCAL_REQUEST_CREATE_CHILD, childSessionCallback, childSessionParams)); in openChildSession()
664 public void closeChildSession(ChildSessionCallback childSessionCallback) { in closeChildSession() argument
665 if (childSessionCallback == null) { in closeChildSession()
669 if (!hasChildSessionCallback(childSessionCallback)) { in closeChildSession()
675 new ChildLocalRequest(CMD_LOCAL_REQUEST_DELETE_CHILD, childSessionCallback, null)); in closeChildSession()
822 public final ChildSessionCallback childSessionCallback; field in IkeSessionStateMachine.FirstChildNegotiationData
[all …]
DIkeLocalRequestScheduler.java181 public final ChildSessionCallback childSessionCallback; field in IkeLocalRequestScheduler.ChildLocalRequest
202 childSessionCallback = childCallback; in ChildLocalRequest()