Home
last modified time | relevance | path

Searched refs:AtClientErrorCode (Results 1 – 14 of 14) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaTypeData.java28 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
120 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode()
128 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode()
143 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode()
160 return new DecodeResult<>(AtClientErrorCode.INSUFFICIENT_CHALLENGES); in decode()
163 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode()
166 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode()
202 public final EapSimAkaAttribute.AtClientErrorCode atClientErrorCode;
209 public DecodeResult(EapSimAkaAttribute.AtClientErrorCode atClientErrorCode) { in DecodeResult()
DEapSimAkaAttribute.java893 public static class AtClientErrorCode extends EapSimAkaAttribute { class in EapSimAkaAttribute
894 private static final String TAG = AtClientErrorCode.class.getSimpleName();
898 public static final AtClientErrorCode UNABLE_TO_PROCESS = getClientErrorCode(0);
899 public static final AtClientErrorCode UNSUPPORTED_VERSION = getClientErrorCode(1);
900 public static final AtClientErrorCode INSUFFICIENT_CHALLENGES = getClientErrorCode(2);
901 public static final AtClientErrorCode STALE_RANDS = getClientErrorCode(3);
905 public AtClientErrorCode(int lengthInBytes, int errorCode) in AtClientErrorCode() method in EapSimAkaAttribute.AtClientErrorCode
922 private static AtClientErrorCode getClientErrorCode(int errorCode) { in getClientErrorCode()
924 return new AtClientErrorCode(ATTR_LENGTH, errorCode); in getClientErrorCode()
DEapSimAkaAttributeFactory.java37 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
103 return new AtClientErrorCode(lengthInBytes, errorCode); in getAttribute()
DEapAkaPrimeTypeData.java23 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtClientErrorCodeTest.java32 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
57 assertTrue(result instanceof AtClientErrorCode); in testDecode()
58 AtClientErrorCode atClientErrorCode = (AtClientErrorCode) result; in testDecode()
76 AtClientErrorCode atNotification = new AtClientErrorCode( in testEncode()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimMethodStateMachine.java55 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
168 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
233 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
241 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
255 AtClientErrorCode.UNSUPPORTED_VERSION); in process()
408 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
416 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
427 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
441 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
449 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
[all …]
DEapAkaMethodStateMachine.java64 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
203 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
242 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
250 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
364 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
370 message.eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in process()
386 message.eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleChallengeAuthentication()
417 AtClientErrorCode.UNABLE_TO_PROCESS); in handleChallengeAuthentication()
585 eapIdentifier, EAP_TYPE_AKA, AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys()
599 EapAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in getEapSimAkaTypeData()
DEapSimAkaMethodStateMachine.java41 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
138 AtClientErrorCode clientErrorCode) { in buildClientErrorResponse()
320 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
328 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
337 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
347 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
358 abstract EapSimAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode); in getEapSimAkaTypeData()
DEapAkaPrimeMethodStateMachine.java42 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
296 eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys()
338 EapAkaPrimeTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in getEapSimAkaTypeData()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DEapAkaPrimeStateTest.java45 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
75 AtClientErrorCode atClientErrorCode = AtClientErrorCode.UNABLE_TO_PROCESS; in testProcessInvalidDecodeResult()
DEapSimStateTest.java48 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
138 AtClientErrorCode atClientErrorCode = AtClientErrorCode.INSUFFICIENT_CHALLENGES; in testProcessInvalidDecodeResult()
DEapAkaStateTest.java50 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
137 AtClientErrorCode atClientErrorCode = AtClientErrorCode.UNABLE_TO_PROCESS; in testProcessInvalidDecodeResult()
DEapSimAkaMethodStateMachineTest.java105 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
184 EapSimAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in setUp()
205 AtClientErrorCode errorCode = AtClientErrorCode.UNSUPPORTED_VERSION; in testBuildClientErrorResponse()
554 EapSimAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in buildEapAkaStateMachineWithKAut()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/
DEapAkaPrimeTypeDataTest.java38 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
145 assertEquals(AtClientErrorCode.UNABLE_TO_PROCESS, result.atClientErrorCode); in testDecodeMultipleAtKdfAttributes()