Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttribute.java817 public final boolean isPreSuccessfulChallenge; field in EapSimAkaAttribute.AtNotification
834 isPreSuccessfulChallenge = (notificationCode & PRE_SUCCESSFUL_CHALLENGE_MASK) != 0; in AtNotification()
836 if (isSuccessCode && isPreSuccessfulChallenge) { in AtNotification()
850 isPreSuccessfulChallenge = (notificationCode & PRE_SUCCESSFUL_CHALLENGE_MASK) != 0; in AtNotification()
852 if (isSuccessCode && isPreSuccessfulChallenge) { in AtNotification()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java313 + " P=" + (atNotification.isPreSuccessfulChallenge ? "1" : "0") in handleEapSimAkaNotification()
318 if (isPreChallengeState && !atNotification.isPreSuccessfulChallenge) { in handleEapSimAkaNotification()
323 if (atNotification.isPreSuccessfulChallenge) { in handleEapSimAkaNotification()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtNotificationTest.java67 assertFalse(atNotification.isPreSuccessfulChallenge); in testDecode()