Home
last modified time | relevance | path

Searched refs:eapResult (Results 1 – 8 of 8) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DIdentityStateTest.java64 EapResult eapResult = mEapState.process(EAP_REQUEST_IDENTITY_PACKET); in testProcess() local
66 assertTrue(eapResult instanceof EapResponse); in testProcess()
67 EapResponse eapResponse = (EapResponse) eapResult; in testProcess()
74 EapResult eapResult = mEapState.process(EAP_REQUEST_IDENTITY_PACKET); in testProcessDefaultIdentity() local
76 assertTrue(eapResult instanceof EapResponse); in testProcessDefaultIdentity()
77 EapResponse eapResponse = (EapResponse) eapResult; in testProcessDefaultIdentity()
84 EapResult eapResult = mEapState.process(EAP_REQUEST_NOTIFICATION_PACKET); in testProcessNotificationRequest() local
87 assertTrue(eapResult instanceof EapResponse); in testProcessNotificationRequest()
88 EapResponse eapResponse = (EapResponse) eapResult; in testProcessNotificationRequest()
DCreatedStateTest.java62 EapResult eapResult = mEapState.process(EAP_REQUEST_NOTIFICATION_PACKET); in testProcessNotificationRequest() local
65 assertTrue(eapResult instanceof EapResponse); in testProcessNotificationRequest()
66 EapResponse eapResponse = (EapResponse) eapResult; in testProcessNotificationRequest()
DEapStateTest.java70 return decode(msg).eapResult; in setUp()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/
DEapResponseTest.java46 EapResult eapResult = EapResponse.getEapResponse(mEapResponse); in testGetEapResponse() local
47 assertTrue(eapResult instanceof EapResponse); in testGetEapResponse()
49 EapResponse eapResponse = (EapResponse) eapResult; in testGetEapResponse()
64 EapResult eapResult = EapResponse.getEapResponse(mEapSuccess); in testGetEapResponseNonRequestMessage() local
65 assertTrue(eapResult instanceof EapError); in testGetEapResponseNonRequestMessage()
67 EapError eapError = (EapError) eapResult; in testGetEapResponseNonRequestMessage()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapStateMachine.java166 public final EapResult eapResult; field in EapStateMachine.EapState.DecodeResult
170 this.eapResult = null; in DecodeResult()
173 public DecodeResult(EapResult eapResult) { in DecodeResult() argument
175 this.eapResult = eapResult; in DecodeResult()
190 return decodeResult.eapResult; in process()
221 return decodeResult.eapResult; in process()
275 return decodeResult.eapResult; in process()
DEapTtlsMethodStateMachine.java207 EapResult eapResult = handleEapSuccessFailureNotification(mTAG, message); in process() local
208 if (eapResult != null) { in process()
209 return eapResult; in process()
422 EapResult eapResult = handleEapSuccessFailureNotification(mTAG, message); in process() local
423 if (eapResult != null) { in process()
424 return eapResult; in process()
815 EapResult eapResult = handleEapSuccessFailure(message); in handleEapSuccessFailureNotification() local
816 if (eapResult != null) { in handleEapSuccessFailureNotification()
817 return eapResult; in handleEapSuccessFailureNotification()
DEapSimMethodStateMachine.java380 EapResult eapResult = handleEapSuccessFailureNotification(mTAG, message); in process() local
381 if (eapResult != null) { in process()
382 return eapResult; in process()
DEapAkaMethodStateMachine.java406 EapResult eapResult = in handleChallengeAuthentication() local
408 if (eapResult != null) { in handleChallengeAuthentication()
409 return eapResult; in handleChallengeAuthentication()