Home
last modified time | relevance | path

Searched refs:ChallengeState (Results 1 – 13 of 13) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapAkaPrimeMethodStateMachine.java152 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
DEapAkaMethodStateMachine.java163 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
DEapSimMethodStateMachine.java228 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
DEapMsChapV2MethodStateMachine.java240 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/
DEapAkaPrimeChallengeStateTest.java61 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()
DEapAkaPrimeCreatedStateTest.java39 import com.android.internal.net.eap.test.statemachine.EapAkaPrimeMethodStateMachine.ChallengeState;
79 ChallengeState challengeState = (ChallengeState) mStateMachine.getState(); in testProcessTransitionToChallengeState()
DEapAkaCreatedStateTest.java44 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState;
86 ChallengeState challengeState = (ChallengeState) mEapAkaMethodStateMachine.getState(); in testProcessTransitionToChallengeState()
DEapSimChallengeStateTest.java77 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()
DEapAkaPrimeIdentityStateTest.java43 import com.android.internal.net.eap.test.statemachine.EapAkaPrimeMethodStateMachine.ChallengeState;
92 assertTrue(mStateMachine.getState() instanceof ChallengeState); in testProcessTransitionToChallengeState()
DEapAkaChallengeStateTest.java73 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()
DEapSimStartStateTest.java67 import com.android.internal.net.eap.test.statemachine.EapSimMethodStateMachine.ChallengeState;
248 ChallengeState challengeState = (ChallengeState) mEapSimMethodStateMachine.getState(); in testProcessWithoutIdentityRequest()
DEapAkaIdentityStateTest.java46 import com.android.internal.net.eap.test.statemachine.EapAkaMethodStateMachine.ChallengeState;
157 assertTrue(mEapAkaMethodStateMachine.getState() instanceof ChallengeState); in testProcessTransitionToChallengeState()
DEapMsChapV2ChallengeStateTest.java59 mStateMachine.transitionTo(mStateMachine.new ChallengeState()); in setUp()