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

1 2 3 4 5

  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
TimeInstrumentStatus.java 27 * A StopWatch can be in two states: STARTED or STOPPED.
33 * A time instrument can be in STARTED or STOPPED status.
39 STARTED, STOPPED;
  /external/guice/extensions/service/src/com/google/inject/service/
Service.java 32 * immediately without taking action. A stopped service may not be restarted.
45 * returns immediately. If the service has already been stopped, this
51 * State#STOPPED} or throws an {@link ExecutionException}. If it has
66 enum State { STARTED, STOPPED, FAILED }
  /frameworks/av/include/media/stagefright/
MediaMuxer.h 129 STOPPED
SimpleDecodingSource.h 84 STOPPED,
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/soundmanager2/
SMSound.java 32 public static final int STOPPED = 0;
121 * 0 = stopped/uninitialised.
  /frameworks/av/cmds/screenrecord/
Overlay.h 74 virtual ~Overlay() { assert(mState == UNINITIALIZED || mState == STOPPED); }
112 enum { UNINITIALIZED, INIT, RUNNING, STOPPING, STOPPED } mState;
  /frameworks/av/cmds/stagefright/
SimplePlayer.h 50 STOPPED,
  /frameworks/base/core/java/android/os/
SystemService.java 39 STOPPED("stopped"),
84 return State.STOPPED;
89 * Check if given service is {@link State#STOPPED}.
92 return State.STOPPED.equals(getState(service));
129 * Wait until any of given services enters {@link State#STOPPED}.
135 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;
  /packages/apps/Launcher3/src/com/android/launcher3/
InterruptibleInOutAnimator.java 43 private static final int STOPPED = 0;
48 @Thunk int mDirection = STOPPED;
59 mDirection = STOPPED;
70 // Make sure it's stopped before we modify any values
88 mDirection = STOPPED;
93 mDirection = STOPPED;
100 return mDirection == STOPPED;
  /system/connectivity/shill/shims/
ppp.cc 33 #undef STOPPED
  /external/jetty/src/java/org/eclipse/jetty/util/component/
AbstractLifeCycle.java 34 public static final String STOPPED="STOPPED";
155 case __STOPPED: return STOPPED;
165 if (lc.isStopped()) return STOPPED;
196 LOG.debug("{} {}",STOPPED,this);
  /external/ppp/pppd/
fsm.h 126 #define STOPPED 3 /* Open, waiting for down event */
  /external/v8/src/heap/
incremental-marking.h 23 enum State { STOPPED, SWEEPING, MARKING, COMPLETE };
53 DCHECK(state_ == STOPPED || FLAG_incremental_marking);
68 inline bool IsStopped() { return state() == STOPPED; }
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.h 74 STOPPED,
  /frameworks/av/services/audioflinger/
TrackBase.h 29 STOPPED,
109 return (mState == STOPPED || mState == FLUSHED);
Effects.h 57 STOPPED,
258 // a session is stopped or removed to allow effect tail to be rendered
  /hardware/ti/omap4-aah/camera/inc/
BaseCameraAdapter.h 194 STOPPED = 0,
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 174 STOPPED = 0,
  /external/libchrome/base/
tracked_objects.h     [all...]
  /external/opencv3/modules/java/generator/src/java/
android+CameraBridgeViewBase.java 35 private static final int STOPPED = 0;
38 private int mState = STOPPED;
104 * This method is invoked when camera preview has been stopped for some reason.
127 * This method is invoked when camera preview has been stopped for some reason.
307 targetState = STOPPED;
327 case STOPPED:
342 case STOPPED:
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 80 public static final int STOPPED = -2;
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h 172 STOPPED,
  /frameworks/base/core/java/android/app/
Fragment.java 176 * activity: if the activity is stopped, no fragments inside of it can be
244 * because its activity is being stopped or a fragment operation is modifying it
370 static final int STOPPED = 3; // Fully created, not started.
    [all...]

Completed in 1053 milliseconds

1 2 3 4 5