/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/ |
D | EapSimAkaTypeData.java | 28 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 109 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode() 117 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode() 131 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode() 148 return new DecodeResult<>(AtClientErrorCode.INSUFFICIENT_CHALLENGES); in decode() 151 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode() 154 return new DecodeResult<>(AtClientErrorCode.UNABLE_TO_PROCESS); in decode() 189 public final EapSimAkaAttribute.AtClientErrorCode atClientErrorCode; 196 public DecodeResult(EapSimAkaAttribute.AtClientErrorCode atClientErrorCode) { in DecodeResult()
|
D | EapSimAkaAttribute.java | 849 public static class AtClientErrorCode extends EapSimAkaAttribute { class in EapSimAkaAttribute 850 private static final String TAG = AtClientErrorCode.class.getSimpleName(); 854 public static final AtClientErrorCode UNABLE_TO_PROCESS = getClientErrorCode(0); 855 public static final AtClientErrorCode UNSUPPORTED_VERSION = getClientErrorCode(1); 856 public static final AtClientErrorCode INSUFFICIENT_CHALLENGES = getClientErrorCode(2); 857 public static final AtClientErrorCode STALE_RANDS = getClientErrorCode(3); 861 public AtClientErrorCode(int lengthInBytes, int errorCode) in AtClientErrorCode() method in EapSimAkaAttribute.AtClientErrorCode 878 private static AtClientErrorCode getClientErrorCode(int errorCode) { in getClientErrorCode() 880 return new AtClientErrorCode(ATTR_LENGTH, errorCode); in getClientErrorCode()
|
D | EapSimAkaAttributeFactory.java | 37 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 103 return new AtClientErrorCode(lengthInBytes, errorCode); in getAttribute()
|
D | EapAkaPrimeTypeData.java | 23 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/ |
D | AtClientErrorCodeTest.java | 32 import com.android.internal.net.eap.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/ |
D | EapSimMethodStateMachine.java | 54 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 167 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 232 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 240 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 254 AtClientErrorCode.UNSUPPORTED_VERSION); in process() 407 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 415 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 426 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 440 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 448 AtClientErrorCode.UNABLE_TO_PROCESS); in process() [all …]
|
D | EapAkaMethodStateMachine.java | 63 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 202 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 241 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 249 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 362 AtClientErrorCode.UNABLE_TO_PROCESS); in process() 368 message.eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in process() 384 message.eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleChallengeAuthentication() 415 AtClientErrorCode.UNABLE_TO_PROCESS); in handleChallengeAuthentication() 583 eapIdentifier, EAP_TYPE_AKA, AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys() 597 EapAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in getEapSimAkaTypeData()
|
D | EapSimAkaMethodStateMachine.java | 41 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 138 AtClientErrorCode clientErrorCode) { in buildClientErrorResponse() 322 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification() 330 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification() 339 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification() 349 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification() 360 abstract EapSimAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode); in getEapSimAkaTypeData()
|
D | EapAkaPrimeMethodStateMachine.java | 41 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 295 eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys() 337 EapAkaPrimeTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in getEapSimAkaTypeData()
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/ |
D | EapAkaPrimeStateTest.java | 44 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 74 AtClientErrorCode atClientErrorCode = AtClientErrorCode.UNABLE_TO_PROCESS; in testProcessInvalidDecodeResult()
|
D | EapSimStateTest.java | 48 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 138 AtClientErrorCode atClientErrorCode = AtClientErrorCode.INSUFFICIENT_CHALLENGES; in testProcessInvalidDecodeResult()
|
D | EapAkaStateTest.java | 50 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 137 AtClientErrorCode atClientErrorCode = AtClientErrorCode.UNABLE_TO_PROCESS; in testProcessInvalidDecodeResult()
|
D | EapSimAkaMethodStateMachineTest.java | 95 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 150 EapSimAkaTypeData getEapSimAkaTypeData(AtClientErrorCode clientErrorCode) { in setUp() 171 AtClientErrorCode errorCode = AtClientErrorCode.UNSUPPORTED_VERSION; in testBuildClientErrorResponse()
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/ |
D | EapAkaPrimeTypeDataTest.java | 38 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtClientErrorCode; 125 assertEquals(AtClientErrorCode.UNABLE_TO_PROCESS, result.atClientErrorCode); in testDecodeMultipleAtKdfAttributes()
|