HomeSort by relevance Sort by last modified time
    Searched defs:STOPPED (Results 1 - 25 of 61) 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,
  /frameworks/av/include/media/stagefright/
MediaMuxer.h 118 STOPPED
  /external/chromium/webkit/glue/media/
simple_data_source.h 132 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 41 private static final int STOPPED = 0;
46 private int mDirection = STOPPED;
57 mDirection = STOPPED;
68 // Make sure it's stopped before we modify any values
86 mDirection = STOPPED;
91 mDirection = STOPPED;
98 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 202 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
206 bool stopped() const;
284 * If the track is stopped, obtainBuffer() returns
285 * STOPPED instead of NO_ERROR as long as there are buffers available,
300 STOPPED = 1
AudioTrack.h 255 * In static buffer mode, the track is stopped immediately.
257 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
260 * is first drained, mixed, and output, and only then is the track marked as stopped.
263 bool stopped() const;
265 /* Flush a stopped or paused track. All previously buffered data is discarded immediately.
268 * This function is a no-op if the track is not stopped or paused, or uses a static buffer.
273 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
359 * This method must be called with the AudioTrack in paused or stopped state.
372 * - INVALID_OPERATION: the AudioTrack is not stopped or paused, or is streaming mode.
386 * This method must be called with the AudioTrack in paused or stopped state
    [all...]
  /frameworks/av/services/audioflinger/
TrackBase.h 30 STOPPED,
89 return (mState == STOPPED || mState == FLUSHED);
Effects.h 53 STOPPED,
241 // a session is stopped or removed to allow effect tail to be rendered
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.h 70 STOPPED,
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 174 STOPPED = 0,
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterState.java 52 static final int STOPPED=25;
139 //TODO: Handle case of service started and stopped without enable
315 //Fall through if no services or services already stopped
316 case STOPPED:
317 if (DBG) Log.d(TAG,"CURRENT_STATE=PENDING, MESSAGE = STOPPED, isTurningOn=" + isTurningOn + ", isTurningOff=" + isTurningOff);
  /frameworks/base/core/java/android/webkit/
HTML5Audio.java 65 private static int STOPPED = -2;
268 mState = STOPPED;
  /frameworks/av/services/camera/libcameraservice/camera2/
Parameters.h 151 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 61 static final int STOPPED = 0; // Not yet playing
127 * an animation (if state == STOPPED). Also used to end an animation that
129 * STOPPED, RUNNING, SEEKED.
131 int mPlayingState = STOPPED;
521 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...]

Completed in 505 milliseconds

1 2 3