HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentState (Results 1 - 16 of 16) sorted by null

  /frameworks/av/media/libmedia/
mediarecorder.cpp 38 if (!(mCurrentState & MEDIA_RECORDER_IDLE)) {
39 ALOGE("setCamera called in an invalid state(%d)", mCurrentState);
46 mCurrentState = MEDIA_RECORDER_ERROR;
59 if (!(mCurrentState & MEDIA_RECORDER_DATASOURCE_CONFIGURED)) {
60 ALOGE("setPreviewSurface called in an invalid state(%d)", mCurrentState);
71 mCurrentState = MEDIA_RECORDER_ERROR;
84 if (!(mCurrentState & MEDIA_RECORDER_IDLE)) {
85 ALOGE("init called in an invalid state(%d)", mCurrentState);
92 mCurrentState = MEDIA_RECORDER_ERROR;
99 mCurrentState = MEDIA_RECORDER_ERROR
    [all...]
mediaplayer.cpp 53 mCurrentState = MEDIA_PLAYER_IDLE;
114 if ( !( (mCurrentState & MEDIA_PLAYER_IDLE) ||
115 (mCurrentState == MEDIA_PLAYER_STATE_ERROR ) ) ) {
116 ALOGE("attachNewPlayer called in state %d", mCurrentState);
124 mCurrentState = MEDIA_PLAYER_INITIALIZED;
193 (mCurrentState != MEDIA_PLAYER_STATE_ERROR) &&
194 ((mCurrentState & MEDIA_PLAYER_IDLE) != MEDIA_PLAYER_IDLE);
199 ALOGE("invoke failed: wrong state %X", mCurrentState);
235 if ( (mPlayer != 0) && ( mCurrentState & ( MEDIA_PLAYER_INITIALIZED | MEDIA_PLAYER_STOPPED) ) ) {
237 mCurrentState = MEDIA_PLAYER_PREPARING
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 240 protected PageState mCurrentState;
339 mCurrentState = new PageState(mContext,
406 if (mCurrentState.mSecurityState == SecurityState.SECURITY_STATE_SECURE) {
410 mCurrentState.mSecurityState = SecurityState.SECURITY_STATE_MIXED;
611 mCurrentState.mUrl = view.getUrl();
612 if (mCurrentState.mUrl == null) {
613 mCurrentState.mUrl = "";
615 mCurrentState.mOriginalUrl = view.getOriginalUrl();
616 mCurrentState.mTitle = view.getTitle();
617 mCurrentState.mFavicon = view.getFavicon()
    [all...]
  /frameworks/native/services/surfaceflinger/
Layer.cpp 96 mCurrentState.active.w = w;
97 mCurrentState.active.h = h;
98 mCurrentState.active.crop.makeInvalid();
99 mCurrentState.z = 0;
100 mCurrentState.alpha = 0xFF;
101 mCurrentState.layerStack = 0;
102 mCurrentState.flags = layerFlags;
103 mCurrentState.sequence = 0;
104 mCurrentState.transform.set(0, 0);
105 mCurrentState.requested = mCurrentState.active
    [all...]
Layer.h 278 inline const State& getCurrentState() const { return mCurrentState; }
279 inline State& getCurrentState() { return mCurrentState; }
341 State mCurrentState;
SurfaceFlinger.cpp 222 flinger->mCurrentState.displays.removeItem(this);
237 mCurrentState.displays.add(token, info);
245 ssize_t idx = mCurrentState.displays.indexOfKey(display);
251 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
257 mCurrentState.displays.removeItemsAt(idx);
268 mCurrentState.displays.add(mBuiltinDisplays[type], info);
621 mDrawingState = mCurrentState;
852 mCurrentState.displays.removeItem(mBuiltinDisplays[type]);
    [all...]
SurfaceFlinger.h 411 State mCurrentState;
  /frameworks/rs/driver/
rsdShader.cpp 70 mCurrentState = NULL;
105 mCurrentState = state;
106 return mCurrentState->mShaderID;
110 mCurrentState = state;
114 return mCurrentState->mShaderID;
202 mCurrentState->mTextureTargets[ct] = GL_TEXTURE_EXTERNAL_OES;
205 mCurrentState->mTextureTargets[ct] = GL_TEXTURE_2D;
209 mCurrentState->mTextureTargets[ct] = GL_TEXTURE_CUBE_MAP;
231 mCurrentState->mShaderID = glCreateShader(mType);
232 rsAssert(mCurrentState->mShaderID)
    [all...]
rsdShader.h 112 StateBasedKey *mCurrentState;
  /frameworks/base/core/java/android/widget/
VideoView.java 87 // mCurrentState is a VideoView object's current state.
92 private int mCurrentState = STATE_IDLE;
224 mCurrentState = STATE_IDLE;
290 mCurrentState = STATE_IDLE;
348 mCurrentState = STATE_PREPARING;
352 mCurrentState = STATE_ERROR;
358 mCurrentState = STATE_ERROR;
399 mCurrentState = STATE_PREPARED;
462 mCurrentState = STATE_PLAYBACK_COMPLETED;
487 mCurrentState = STATE_ERROR
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java 86 private int mCurrentState = STATE_IDLE;
261 if (mCurrentState == STATE_ERROR || mCurrentState == STATE_PLAYBACK_COMPLETED) {
270 mCurrentState = STATE_ERROR;
340 mCurrentState = isPlaying() ? STATE_PLAYING : STATE_PAUSED;
396 mCurrentState = STATE_IDLE;
412 mCurrentState = STATE_PLAYBACK_COMPLETED;
490 return (mCurrentState != STATE_ERROR && mCurrentState != STATE_IDLE);
499 mCurrentState = STATE_PLAYING
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
TouchExplorer.java 120 private int mCurrentState = STATE_TOUCH_EXPLORING;
262 switch (mCurrentState) {
298 mCurrentState = STATE_TOUCH_EXPLORING;
316 Slog.d(LOG_TAG, getStateSymbolicName(mCurrentState));
321 switch(mCurrentState) {
335 throw new IllegalStateException("Illegal state: " + mCurrentState);
490 mCurrentState = STATE_GESTURE_DETECTING;
573 mCurrentState = STATE_DRAGGING;
580 mCurrentState = STATE_DELEGATING;
602 mCurrentState = STATE_DELEGATING
    [all...]
ScreenMagnifier.java 152 private int mCurrentState;
334 switch (mCurrentState) {
350 throw new IllegalStateException("Unknown state: " + mCurrentState);
369 mCurrentState = STATE_DETECTING;
470 Slog.i(LOG_TAG, "mCurrentState: STATE_DELEGATING");
473 Slog.i(LOG_TAG, "mCurrentState: STATE_DETECTING");
476 Slog.i(LOG_TAG, "mCurrentState: STATE_VIEWPORT_DRAGGING");
479 Slog.i(LOG_TAG, "mCurrentState: STATE_MAGNIFIED_INTERACTION");
486 mPreviousState = mCurrentState;
487 mCurrentState = state
    [all...]
  /frameworks/av/include/media/
mediarecorder.h 246 media_recorder_states mCurrentState;
mediaplayer.h 264 media_player_states mCurrentState;
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java     [all...]

Completed in 178 milliseconds