HomeSort by relevance Sort by last modified time
    Searched defs:STOPPED (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium/chrome/browser/sync/glue/
ui_model_worker.cc 20 // with state_ = STOPPED, so it is safe to read / compare in this case.
21 CHECK_NE(ANNOTATE_UNPROTECTED_READ(state_), STOPPED);
58 DCHECK_EQ(state_, STOPPED);
66 // on where we timeslice the UI thread in Stop; but we can't be STOPPED,
68 DCHECK_NE(state_, STOPPED);
94 state_ = STOPPED;
ui_model_worker.h 97 STOPPED,
data_type_manager.h 23 STOPPED, // No data types are currently running.
33 STOPPING // Data types are being stopped.
77 // stopped. Any stopped data types that are in the desired_types
92 // stopped.
  /external/chromium/chrome/browser/sync/notifier/
invalidation_notifier.h 70 // We start off in the STOPPED state. When we get our initial
75 STOPPED,
  /external/chromium/webkit/glue/media/
simple_data_source.h 132 STOPPED,
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 92 STOPPED,
  /external/oprofile/libop/
op_interface.h 42 STOPPED = 0,
  /frameworks/av/cmds/stagefright/
SimplePlayer.h 50 STOPPED,
  /frameworks/base/core/java/android/os/
SystemService.java 41 STOPPED("stopped"),
86 return State.STOPPED;
91 * Check if given service is {@link State#STOPPED}.
94 return State.STOPPED.equals(getState(service));
131 * Wait until any of given services enters {@link State#STOPPED}.
137 if (State.STOPPED.equals(getState(service))) {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerStateErrors.java 30 STOPPED,
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 40 private static final int STOPPED = 0;
45 private int mDirection = STOPPED;
56 mDirection = STOPPED;
67 // Make sure it's stopped before we modify any values
85 mDirection = STOPPED;
90 mDirection = STOPPED;
97 return mDirection == STOPPED;
  /external/ppp/pppd/
fsm.h 126 #define STOPPED 3 /* Open, waiting for down event */
  /external/v8/src/
incremental-marking.h 43 STOPPED,
59 ASSERT(state_ == STOPPED || FLAG_incremental_marking);
66 inline bool IsStopped() { return state() == STOPPED; }
  /frameworks/av/include/media/
AudioRecord.h 201 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
205 bool stopped() const;
282 * filled entirely. If the track is stopped, obtainBuffer() returns
283 * STOPPED instead of NO_ERROR as long as there are buffers available,
293 STOPPED = 1
AudioTrack.h 258 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
262 bool stopped() const;
264 /* Flush a stopped track. All pending buffers are discarded.
265 * This function has no effect if the track is not stopped.
270 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
348 * This method must be called with the AudioTrack in paused or stopped state.
361 * - INVALID_OPERATION: the AudioTrack is not stopped.
369 * This method must be called with the AudioTrack in paused or stopped state.
373 * - INVALID_OPERATION: the AudioTrack is not stopped.
413 * If the track is stopped, obtainBuffer() return
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.h 62 STOPPED,
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 174 STOPPED = 0,
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterState.java 51 static final int STOPPED=25;
133 //TODO: Handle case of service started and stopped without enable
281 //Fall through if no services or services already stopped
282 case STOPPED:
283 if (DBG) Log.d(TAG,"CURRENT_STATE=PENDING, MESSAGE = STOPPED, isTurningOn=" + isTurningOn + ", isTurningOff=" + isTurningOff);
  /frameworks/base/core/java/android/webkit/
HTML5Audio.java 63 private static int STOPPED = -2;
260 mState = STOPPED;
  /frameworks/av/services/camera/libcameraservice/camera2/
Parameters.h 152 STOPPED,
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 53 STOPPED,
271 return mState == SmilPlayerState.STOPPED;
634 mState = SmilPlayerState.STOPPED;
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 62 static final int STOPPED = 0; // Not yet playing
125 * an animation (if state == STOPPED). Also used to end an animation that
127 * STOPPED, RUNNING, SEEKED.
129 int mPlayingState = STOPPED;
520 if (!mInitialized || mPlayingState == STOPPED) {
    [all...]
  /frameworks/base/core/java/android/app/
Fragment.java 159 * activity: if the activity is stopped, no fragments inside of it can be
226 * because its activity is being stopped or a fragment operation is modifying it
352 static final int STOPPED = 3; // Fully created, not started.
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
Fragment.java 162 static final int STOPPED = 3; // Fully created, not started.
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 376 STOPPED,
436 return (mState == STOPPED || mState == FLUSHED);
    [all...]

Completed in 1304 milliseconds

1 2 3