Home
last modified time | relevance | path

Searched refs:IKE_OPTION_EAP_ONLY_AUTH (Results 1 – 5 of 5) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java25 import static android.net.ipsec.ike.IkeSessionParams.IKE_OPTION_EAP_ONLY_AUTH;
581 .addIkeOption(IKE_OPTION_EAP_ONLY_AUTH) in testExpceptionOnEapOnlyOptionWithoutEapAuth()
599 .addIkeOption(IKE_OPTION_EAP_ONLY_AUTH) in testExceptionOnEapOnlyOptionWithEapOnlyUnsafeMethod()
615 .addIkeOption(IKE_OPTION_EAP_ONLY_AUTH) in testBuildWithEapOnlyOption()
621 assertTrue(sessionParams.hasIkeOption(IKE_OPTION_EAP_ONLY_AUTH)); in testBuildWithEapOnlyOption()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionParams.java81 @IntDef({IKE_OPTION_ACCEPT_ANY_REMOTE_ID, IKE_OPTION_EAP_ONLY_AUTH})
97 public static final int IKE_OPTION_EAP_ONLY_AUTH = 1; field in IkeSessionParams
100 private static final int MAX_IKE_OPTION = IKE_OPTION_EAP_ONLY_AUTH;
946 if ((mIkeOptions & getOptionBitValue(IKE_OPTION_EAP_ONLY_AUTH)) != 0) { in build()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java19 import static android.net.ipsec.ike.IkeSessionParams.IKE_OPTION_EAP_ONLY_AUTH;
3255 if (mIkeSessionParams.hasIkeOption(IKE_OPTION_EAP_ONLY_AUTH)) { in buildIkeAuthReq()
3391 if (authPayload == null && mIkeSessionParams.hasIkeOption(IKE_OPTION_EAP_ONLY_AUTH)) { in validateIkeAuthResp()
/packages/modules/IPsec/api/
Dsystem-current.txt179 field public static final int IKE_OPTION_EAP_ONLY_AUTH = 1; // 0x1
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachineTest.java20 import static android.net.ipsec.ike.IkeSessionParams.IKE_OPTION_EAP_ONLY_AUTH;
4724 .addIkeOption(IKE_OPTION_EAP_ONLY_AUTH) in testEapOnlyOption()