Home
last modified time | relevance | path

Searched refs:AtNotification (Results 1 – 11 of 11) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtNotificationTest.java20 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
37 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
62 assertTrue(result instanceof AtNotification); in testDecode()
63 AtNotification atNotification = (AtNotification) result; in testDecode()
93 AtNotification atNotification = new AtNotification(hexStringToInt(NOTIFICATION_CODE)); in testEncode()
102 AtNotification knownCode = new AtNotification(GENERAL_FAILURE_POST_CHALLENGE); in testToString()
103 AtNotification unknownCode = new AtNotification(UNKNOWN_CODE); in testToString()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachineTest.java58 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
59 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
123 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
447 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testHandleEapSimNotificationPreChallenge()
469 Arrays.asList(new AtNotification(GENERAL_FAILURE_POST_CHALLENGE))); in testHandleEapSimNotificationPreChallengeInvalidPBit()
491 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testHandleEapSimNotificationMultipleNotifications()
518 new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE), new AtMac())); in testHandleEapSimNotificationInvalidAtMac()
541 new AtNotification(GENERAL_FAILURE_POST_CHALLENGE), in testHandleEapSimNotificationPostChallenge()
577 Arrays.asList(new AtNotification(GENERAL_FAILURE_POST_CHALLENGE))); in testHandleEapSimNotificationPostChallengeInvalidAtMac()
623 new AtNotification(GENERAL_FAILURE_POST_CHALLENGE), in testHandleEapAkaNotificationPostReauth()
DEapSimMethodStateMachineTest.java27 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
50 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
119 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testEapSimFailsOnMultipleSimNotifications()
DEapAkaMethodStateMachineTest.java30 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
54 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
121 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testEapAkaFailsOnMultipleAkaNotifications()
DEapSimStateTest.java29 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
49 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
120 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testProcessEapSimNotification()
DEapAkaStateTest.java30 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
51 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
123 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testProcessEapAkaNotification()
DEapSimChallengeStateTest.java39 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
40 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.SU…
79 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
386 ? new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE) in testHandleSimNotificationBeforeAuthenticated()
387 : new AtNotification(SUCCESS))); in testHandleSimNotificationBeforeAuthenticated()
DEapAkaChallengeStateTest.java41 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
42 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.SU…
75 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
458 ? new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE) in testHandleAkaNotificationBeforeAuthenticated()
459 : new AtNotification(SUCCESS))); in testHandleAkaNotificationBeforeAuthenticated()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttributeFactory.java50 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtNotification;
106 return new AtNotification(lengthInBytes, byteBuffer); in getAttribute()
DEapSimAkaAttribute.java815 public static class AtNotification extends EapSimAkaAttribute { class in EapSimAkaAttribute
833 public AtNotification(int lengthInBytes, ByteBuffer byteBuffer) in AtNotification() method in EapSimAkaAttribute.AtNotification
855 public AtNotification(int notificationCode) throws EapSimAkaInvalidAttributeException { in AtNotification() method in EapSimAkaAttribute.AtNotification
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java55 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtNotification;
526 AtNotification atNotification = in handleEapSimAkaNotification()
527 (AtNotification) eapSimAkaTypeData.attributeMap.get(EAP_AT_NOTIFICATION); in handleEapSimAkaNotification()