Home | History | Annotate | Download | only in legacy

Lines Matching defs:mCurrentState

55     private int mCurrentState = STATE_UNCONFIGURED;
173 if (mCurrentState != STATE_CAPTURING) {
174 Log.e(TAG, "Cannot receive result while in state: " + mCurrentState);
254 if (newState != mCurrentState) {
264 if (mCurrentState != newState && mCurrentHandler != null &&
277 if (mCurrentState != STATE_ERROR && mCurrentHandler != null &&
286 mCurrentState = STATE_ERROR;
289 if (mCurrentState != STATE_UNCONFIGURED && mCurrentState != STATE_IDLE) {
290 Log.e(TAG, "Cannot call configure while in state: " + mCurrentState);
295 if (mCurrentState != STATE_CONFIGURING && mCurrentHandler != null &&
304 mCurrentState = STATE_CONFIGURING;
307 if (mCurrentState == STATE_IDLE) {
311 if (mCurrentState != STATE_CONFIGURING && mCurrentState != STATE_CAPTURING) {
312 Log.e(TAG, "Cannot call idle while in state: " + mCurrentState);
318 if (mCurrentState != STATE_IDLE && mCurrentHandler != null &&
327 mCurrentState = STATE_IDLE;
330 if (mCurrentState != STATE_IDLE && mCurrentState != STATE_CAPTURING) {
331 Log.e(TAG, "Cannot call capture while in state: " + mCurrentState);
354 mCurrentState = STATE_CAPTURING;