Home | History | Annotate | Download | only in stateful

Lines Matching refs:mState

32     private State mState;
34 /** The lock to protect mState. */
43 mState = new StateUninitialized(this);
54 if (newState.equals(mState)) {
59 Log.d(TAG, "Change state : " + mState + " => " + newState);
60 mState.onLeave();
61 mState = newState;
62 Optional<State> nextState = mState.onEnter();
64 Log.d(TAG, "Forward state : " + mState + " => " + nextState.get());
65 mState.onLeave();
66 mState = nextState.get();
67 nextState = mState.onEnter();
81 return mState;
91 if (!(mState instanceof StateUninitialized)) {
105 EventHandler eventHandler = mState.getEventHandler(event.getClass());