Home | History | Annotate | Download | only in pbap

Lines Matching refs:mPrevState

84     private PbapStateBase mPrevState;
137 // Crash if mPrevState is null and state is not Disconnected
138 if (!(this instanceof WaitingForAuth) && mPrevState == null) {
139 throw new IllegalStateException("mPrevState is null on entering initial state");
146 mPrevState = this;
166 if (mPrevState != null) {
167 prevStateInt = mPrevState.getConnectionStateInt();
170 stateLogD("connection state changed: " + mRemoteDevice + ": " + mPrevState + " -> "
187 isValidTransition = mPrevState == null;
189 isValidTransition = mPrevState == mConnected || mPrevState == mWaitingForAuth;
191 isValidTransition = mPrevState == mFinished || mPrevState == mWaitingForAuth;
195 "Invalid state transition from " + mPrevState + " to " + this