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.java906 public static class AtClientErrorCode extends EapSimAkaAttribute { class in EapSimAkaAttribute
907 private static final String TAG = AtClientErrorCode.class.getSimpleName();
911 public static final AtClientErrorCode UNABLE_TO_PROCESS = getClientErrorCode(0);
912 public static final AtClientErrorCode UNSUPPORTED_VERSION = getClientErrorCode(1);
913 public static final AtClientErrorCode INSUFFICIENT_CHALLENGES = getClientErrorCode(2);
914 public static final AtClientErrorCode STALE_RANDS = getClientErrorCode(3);
918 public AtClientErrorCode(int lengthInBytes, int errorCode) in AtClientErrorCode() method in EapSimAkaAttribute.AtClientErrorCode
935 private static AtClientErrorCode getClientErrorCode(int errorCode) { in getClientErrorCode()
937 return new AtClientErrorCode(ATTR_LENGTH, errorCode); in getClientErrorCode()
DEapSimAkaAttributeFactory.java40 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
109 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;
170 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
238 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
246 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
260 AtClientErrorCode.UNSUPPORTED_VERSION); in process()
416 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
424 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
435 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
449 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
457 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
[all …]
DEapAkaMethodStateMachine.java72 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
257 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
309 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
317 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
451 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
457 message.eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in process()
473 message.eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleChallengeAuthentication()
504 AtClientErrorCode.UNABLE_TO_PROCESS); in handleChallengeAuthentication()
680 eapIdentifier, EAP_TYPE_AKA, AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys()
758 AtClientErrorCode.UNABLE_TO_PROCESS); in process()
[all …]
DEapSimAkaMethodStateMachine.java50 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
163 AtClientErrorCode clientErrorCode) { in buildClientErrorResponse()
545 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
555 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
562 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
571 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
600 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
609 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;
141 AtClientErrorCode atClientErrorCode = AtClientErrorCode.UNABLE_TO_PROCESS; in testProcessInvalidDecodeResult()
DEapSimAkaMethodStateMachineTest.java117 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtClientErrorCode;
228 EapSimAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in setUp()
250 AtClientErrorCode errorCode = AtClientErrorCode.UNSUPPORTED_VERSION; in testBuildClientErrorResponse()
765 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()