Home
last modified time | relevance | path

Searched refs:AtNotification (Results 1 – 9 of 9) 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.java53 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
54 import static com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification.GE…
108 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNotification;
402 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testHandleEapSimNotificationPreChallenge()
417 Arrays.asList(new AtNotification(GENERAL_FAILURE_POST_CHALLENGE))); in testHandleEapSimNotificationPreChallengeInvalidPBit()
432 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testHandleEapSimNotificationMultipleNotifications()
450 new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE), new AtMac())); in testHandleEapSimNotificationInvalidAtMac()
466 new AtNotification(GENERAL_FAILURE_POST_CHALLENGE), in testHandleEapSimNotificationPostChallenge()
495 Arrays.asList(new AtNotification(GENERAL_FAILURE_POST_CHALLENGE))); in testHandleEapSimNotificationPostChallengeInvalidAtMac()
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;
117 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;
119 Arrays.asList(new AtNotification(GENERAL_FAILURE_PRE_CHALLENGE))); in testProcessEapAkaNotification()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java43 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtNotification;
306 AtNotification atNotification = in handleEapSimAkaNotification()
307 (AtNotification) eapSimAkaTypeData.attributeMap.get(EAP_AT_NOTIFICATION); in handleEapSimAkaNotification()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttributeFactory.java44 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtNotification;
100 return new AtNotification(lengthInBytes, byteBuffer); in getAttribute()
DEapSimAkaAttribute.java802 public static class AtNotification extends EapSimAkaAttribute { class in EapSimAkaAttribute
820 public AtNotification(int lengthInBytes, ByteBuffer byteBuffer) in AtNotification() method in EapSimAkaAttribute.AtNotification
842 public AtNotification(int notificationCode) throws EapSimAkaInvalidAttributeException { in AtNotification() method in EapSimAkaAttribute.AtNotification