Searched defs:mCurrentState (Results 1 - 14 of 14) sorted by relevance

/frameworks/rs/driver/
H A DrsdShader.h112 StateBasedKey *mCurrentState; member in class:RsdShader
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java55 private int mCurrentState = STATE_UNCONFIGURED; field in class:CameraDeviceState
172 if (mCurrentState != STATE_CAPTURING) {
173 Log.e(TAG, "Cannot receive result while in state: " + mCurrentState);
237 if (newState != mCurrentState) {
247 if (mCurrentState != newState && mCurrentHandler != null &&
260 if (mCurrentState != STATE_ERROR && mCurrentHandler != null &&
269 mCurrentState = STATE_ERROR;
272 if (mCurrentState != STATE_UNCONFIGURED && mCurrentState != STATE_IDLE) {
273 Log.e(TAG, "Cannot call configure while in state: " + mCurrentState);
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/model/
H A DMusicProvider.java76 private volatile State mCurrentState = State.NON_INITIALIZED; field in class:MusicProvider
95 if (mCurrentState != State.INITIALIZED) {
105 if (mCurrentState != State.INITIALIZED || !mMusicListByGenre.containsKey(genre)) {
117 if (mCurrentState != State.INITIALIZED) {
170 return mCurrentState == State.INITIALIZED;
179 if (mCurrentState == State.INITIALIZED) {
190 return mCurrentState;
221 if (mCurrentState == State.NON_INITIALIZED) {
222 mCurrentState = State.INITIALIZING;
239 mCurrentState
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/model/
H A DMusicProvider.java76 private volatile State mCurrentState = State.NON_INITIALIZED; field in class:MusicProvider
95 if (mCurrentState != State.INITIALIZED) {
105 if (mCurrentState != State.INITIALIZED || !mMusicListByGenre.containsKey(genre)) {
117 if (mCurrentState != State.INITIALIZED) {
170 return mCurrentState == State.INITIALIZED;
179 if (mCurrentState == State.INITIALIZED) {
190 return mCurrentState;
221 if (mCurrentState == State.NON_INITIALIZED) {
222 mCurrentState = State.INITIALIZING;
239 mCurrentState
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSignalController.java43 protected final T mCurrentState; field in class:SignalController
66 mCurrentState = cleanState();
77 return mCurrentState;
81 mCurrentState.inetCondition = validatedTransports.get(mTransportType) ? 1 : 0;
93 mCurrentState.copyFrom(mLastState);
101 if (!mLastState.equals(mCurrentState)) {
104 + "\tto: " + mCurrentState);
116 mCurrentState.time = System.currentTimeMillis();
117 mLastState.copyFrom(mCurrentState);
124 if (mCurrentState
[all...]
/frameworks/av/include/media/
H A Dmediaplayer.h275 media_player_states mCurrentState; member in class:android::MediaPlayer
H A Dmediarecorder.h262 media_recorder_states mCurrentState; member in class:android::MediaRecorder
/frameworks/base/core/java/android/widget/
H A DVideoView.java90 // mCurrentState is a VideoView object's current state.
95 private int mCurrentState = STATE_IDLE; field in class:VideoView
148 mCurrentState = STATE_IDLE;
302 mCurrentState = STATE_IDLE;
363 mCurrentState = STATE_PREPARING;
367 mCurrentState = STATE_ERROR;
373 mCurrentState = STATE_ERROR;
414 mCurrentState = STATE_PREPARED;
477 mCurrentState = STATE_PLAYBACK_COMPLETED;
502 mCurrentState
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowManager.java62 private final State mCurrentState = new State(); field in class:StatusBarWindowManager
256 mCurrentState.keyguardShowing = showing;
257 apply(mCurrentState);
261 mCurrentState.keyguardOccluded = occluded;
262 apply(mCurrentState);
266 mCurrentState.keyguardNeedsInput = needsInput;
267 apply(mCurrentState);
271 mCurrentState.panelVisible = visible;
272 mCurrentState.statusBarFocusable = visible;
273 apply(mCurrentState);
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationGestureHandler.java102 private int mCurrentState; field in class:MagnificationGestureHandler
139 switch (mCurrentState) {
159 throw new IllegalStateException("Unknown state: " + mCurrentState);
200 mCurrentState = STATE_DETECTING;
298 Slog.i(LOG_TAG, "mCurrentState: STATE_DELEGATING");
302 Slog.i(LOG_TAG, "mCurrentState: STATE_DETECTING");
306 Slog.i(LOG_TAG, "mCurrentState: STATE_VIEWPORT_DRAGGING");
310 Slog.i(LOG_TAG, "mCurrentState: STATE_MAGNIFIED_INTERACTION");
318 mPreviousState = mCurrentState;
319 mCurrentState
[all...]
H A DTouchExplorer.java103 private int mCurrentState = STATE_TOUCH_EXPLORING; field in class:TouchExplorer
220 switch (mCurrentState) {
254 mCurrentState = STATE_TOUCH_EXPLORING;
276 Slog.d(LOG_TAG, getStateSymbolicName(mCurrentState));
294 switch(mCurrentState) {
308 throw new IllegalStateException("Illegal state: " + mCurrentState);
363 if (mCurrentState != STATE_TOUCH_EXPLORING) {
388 mCurrentState = STATE_DELEGATING;
395 if (mCurrentState != STATE_TOUCH_EXPLORING) {
443 mCurrentState
[all...]
/frameworks/native/services/surfaceflinger/
H A DLayer.h399 inline const State& getCurrentState() const { return mCurrentState; }
400 inline State& getCurrentState() { return mCurrentState; }
548 State mCurrentState; member in class:android::Layer
H A DSurfaceFlinger.h471 State mCurrentState; member in class:android::SurfaceFlinger
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java2655 BackupState mCurrentState; field in class:BackupManagerService.PerformBackupTask
2684 mCurrentState = BackupState.INITIAL;
2694 switch (mCurrentState) {
3458 mCurrentState = nextState;

Completed in 796 milliseconds