Home
last modified time | relevance | path

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

/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
H A DAtNotificationTest.java63 AtNotification atNotification = (AtNotification) result; in testDecode() local
64 assertEquals(EAP_AT_NOTIFICATION, atNotification.attributeType); in testDecode()
65 assertEquals(EXPECTED_LENGTH, atNotification.lengthInBytes); in testDecode()
66 assertTrue(atNotification.isSuccessCode); in testDecode()
67 assertFalse(atNotification.isPreSuccessfulChallenge); in testDecode()
68 assertEquals(hexStringToInt(NOTIFICATION_CODE), atNotification.notificationCode); in testDecode()
93 AtNotification atNotification = new AtNotification(hexStringToInt(NOTIFICATION_CODE)); in testEncode() local
96 atNotification.encode(result); in testEncode()
H A DAtClientErrorCodeTest.java76 AtClientErrorCode atNotification = new AtClientErrorCode( in testEncode() local
80 atNotification.encode(result); in testEncode()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
H A DEapSimAkaMethodStateMachine.java306 AtNotification atNotification = in handleEapSimAkaNotification() local
312 + " S=" + (atNotification.isSuccessCode ? "1" : "0") in handleEapSimAkaNotification()
313 + " P=" + (atNotification.isPreSuccessfulChallenge ? "1" : "0") in handleEapSimAkaNotification()
314 + " Code=" + atNotification.notificationCode); in handleEapSimAkaNotification()
318 if (isPreChallengeState && !atNotification.isPreSuccessfulChallenge) { in handleEapSimAkaNotification()
323 if (atNotification.isPreSuccessfulChallenge) { in handleEapSimAkaNotification()