/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/ |
D | EapAkaPrimeMethodStateMachine.java | 152 protected ChallengeState buildChallengeState() { in buildChallengeState() 153 return new ChallengeState(); in buildChallengeState() 157 protected ChallengeState buildChallengeState(byte[] identity) { in buildChallengeState() 158 return new ChallengeState(identity); in buildChallengeState() 166 protected class ChallengeState extends EapAkaMethodStateMachine.ChallengeState { class in EapAkaPrimeMethodStateMachine 167 private final String mTAG = ChallengeState.class.getSimpleName(); 169 ChallengeState() { in ChallengeState() method in EapAkaPrimeMethodStateMachine.ChallengeState 173 ChallengeState(byte[] identity) { in ChallengeState() method in EapAkaPrimeMethodStateMachine.ChallengeState
|
D | EapAkaMethodStateMachine.java | 163 protected ChallengeState buildChallengeState() { in buildChallengeState() 164 return new ChallengeState(); in buildChallengeState() 167 protected ChallengeState buildChallengeState(byte[] identity) { in buildChallengeState() 168 return new ChallengeState(identity); in buildChallengeState() 303 protected class ChallengeState extends EapMethodState { class in EapAkaMethodStateMachine 304 private final String mTAG = ChallengeState.class.getSimpleName(); 317 ChallengeState() { in ChallengeState() method in EapAkaMethodStateMachine.ChallengeState 322 ChallengeState(byte[] identity) { in ChallengeState() method in EapAkaMethodStateMachine.ChallengeState
|
D | EapSimMethodStateMachine.java | 228 new ChallengeState(mVersions, mAtNonceMt, mIdentity), message); in process() 346 protected class ChallengeState extends EapMethodState { class in EapSimMethodStateMachine 347 private final String mTAG = ChallengeState.class.getSimpleName(); 362 protected ChallengeState(List<Integer> versions, AtNonceMt atNonceMt, byte[] identity) { in ChallengeState() method in EapSimMethodStateMachine.ChallengeState
|
D | EapMsChapV2MethodStateMachine.java | 240 return transitionAndProcess(new ChallengeState(), message); in process() 244 protected class ChallengeState extends EapMethodState { class in EapMsChapV2MethodStateMachine
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/ |
D | EapAkaPrimeChallengeStateTest.java | 61 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState.RandC… 62 import com.android.internal.net.eap.test.statemachine.EapAkaPrimeMethodStateMachine.ChallengeState; 100 private ChallengeState mState; 107 mState = mStateMachine.new ChallengeState(); in setUp() 124 ChallengeState challengeState = (ChallengeState) mStateMachine.getState(); in testTransitionWithEapIdentity() 159 ChallengeState challengeState = (ChallengeState) mStateMachine.getState(); in testTransitionWithEapAkaPrimeIdentity() 265 mState = mStateMachine.new ChallengeState(); in testProcessIncorrectNetworkNameIsIgnored()
|
D | EapAkaPrimeCreatedStateTest.java | 39 import com.android.internal.net.eap.test.statemachine.EapAkaPrimeMethodStateMachine.ChallengeState; 79 ChallengeState challengeState = (ChallengeState) mStateMachine.getState(); in testProcessTransitionToChallengeState()
|
D | EapAkaCreatedStateTest.java | 44 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState; 86 ChallengeState challengeState = (ChallengeState) mEapAkaMethodStateMachine.getState(); in testProcessTransitionToChallengeState()
|
D | EapSimChallengeStateTest.java | 77 import com.android.internal.net.eap.test.statemachine.EapSimMethodStateMachine.ChallengeState; 78 import com.android.internal.net.eap.test.statemachine.EapSimMethodStateMachine.ChallengeState.RandC… 111 private ChallengeState mChallengeState; 123 .new ChallengeState(VERSIONS, mAtNonceMt, EAP_SIM_IDENTITY_BYTES); in setUp()
|
D | EapAkaPrimeIdentityStateTest.java | 43 import com.android.internal.net.eap.test.statemachine.EapAkaPrimeMethodStateMachine.ChallengeState; 92 assertTrue(mStateMachine.getState() instanceof ChallengeState); in testProcessTransitionToChallengeState()
|
D | EapAkaChallengeStateTest.java | 73 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState; 74 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState.RandC… 83 private ChallengeState mChallengeState; 121 mChallengeState = mEapAkaMethodStateMachine.new ChallengeState(IDENTITY); in setUp()
|
D | EapSimStartStateTest.java | 67 import com.android.internal.net.eap.test.statemachine.EapSimMethodStateMachine.ChallengeState; 248 ChallengeState challengeState = (ChallengeState) mEapSimMethodStateMachine.getState(); in testProcessWithoutIdentityRequest()
|
D | EapAkaIdentityStateTest.java | 46 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState; 157 assertTrue(mEapAkaMethodStateMachine.getState() instanceof ChallengeState); in testProcessTransitionToChallengeState()
|
D | EapMsChapV2ChallengeStateTest.java | 59 mStateMachine.transitionTo(mStateMachine.new ChallengeState()); in setUp()
|