Home | History | Annotate | Download | only in legacy

Lines Matching defs:mCurrentState

55     private int mCurrentState = STATE_UNCONFIGURED;
170 if (mCurrentState != STATE_CAPTURING) {
171 Log.e(TAG, "Cannot receive result while in state: " + mCurrentState);
214 if (newState != mCurrentState) {
224 if (mCurrentState != newState && mCurrentHandler != null &&
237 if (mCurrentState != STATE_ERROR && mCurrentHandler != null &&
246 mCurrentState = STATE_ERROR;
249 if (mCurrentState != STATE_UNCONFIGURED && mCurrentState != STATE_IDLE) {
250 Log.e(TAG, "Cannot call configure while in state: " + mCurrentState);
255 if (mCurrentState != STATE_CONFIGURING && mCurrentHandler != null &&
264 mCurrentState = STATE_CONFIGURING;
267 if (mCurrentState == STATE_IDLE) {
271 if (mCurrentState != STATE_CONFIGURING && mCurrentState != STATE_CAPTURING) {
272 Log.e(TAG, "Cannot call idle while in state: " + mCurrentState);
278 if (mCurrentState != STATE_IDLE && mCurrentHandler != null &&
287 mCurrentState = STATE_IDLE;
290 if (mCurrentState != STATE_IDLE && mCurrentState != STATE_CAPTURING) {
291 Log.e(TAG, "Cannot call capture while in state: " + mCurrentState);
314 mCurrentState = STATE_CAPTURING;