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.java653 ChildSessionParams childSessionParams, ChildSessionCallback childSessionCallback) { in openChildSession() argument
654 if (childSessionCallback == null) { in openChildSession()
658 if (hasChildSessionCallback(childSessionCallback)) { in openChildSession()
663 childSessionParams, childSessionCallback, false /*isFirstChild*/); in openChildSession()
667 CMD_LOCAL_REQUEST_CREATE_CHILD, childSessionCallback, childSessionParams)); in openChildSession()
671 public void closeChildSession(ChildSessionCallback childSessionCallback) { in closeChildSession() argument
672 if (childSessionCallback == null) { in closeChildSession()
676 if (!hasChildSessionCallback(childSessionCallback)) { in closeChildSession()
682 new ChildLocalRequest(CMD_LOCAL_REQUEST_DELETE_CHILD, childSessionCallback, null)); in closeChildSession()
821 public final ChildSessionCallback childSessionCallback; field in IkeSessionStateMachine.FirstChildNegotiationData
[all …]
DIkeLocalRequestScheduler.java181 public final ChildSessionCallback childSessionCallback; field in IkeLocalRequestScheduler.ChildLocalRequest
202 childSessionCallback = childCallback; in ChildLocalRequest()