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

1 2 3 4 5 6 7 8 9

  /packages/services/Car/evs/manager/
HalCamera.h 72 RUNNING,
VirtualCamera.h 54 bool isStreaming() { return mStreamState == RUNNING; }
76 RUNNING,
  /device/google/contexthub/firmware/os/algos/common/math/
levenberg_marquardt.h 84 RUNNING = 0,
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 34 * <li>{@linkplain State#RUNNING RUNNING} -&gt;
40 * before the {@link Service} reaches the {@linkplain State#RUNNING RUNNING} state. The set of legal
68 * Returns {@code true} if this service is {@linkplain State#RUNNING running}.
78 * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running},
90 * Waits for the {@link Service} to reach the {@linkplain State#RUNNING running state}
267 public void running() {} method in class:Service.Listener
    [all...]
AbstractFuture.java 49 * failure in changing the future's state. Valid states are running,
217 * RUNNING to COMPLETING, that thread will then set the result of the
229 static final int RUNNING = 0;
361 * from {@link #RUNNING}. If the state is not in the RUNNING state we
372 boolean doCompletion = compareAndSetState(RUNNING, COMPLETING);
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 29 private static final int RUNNING = 1;
53 mState = RUNNING;
69 if (mState == START) { // can't cancel if running or done
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
ConcurrentQueue.h 92 RUNNING = 1,
127 if (mState.exchange(State::RUNNING) == State::INIT) {
128 while (State::RUNNING == mState) {
  /tools/repohooks/
pre-upload.py 58 RUNNING = COLOR.color(COLOR.YELLOW, 'RUNNING')
91 status_line = '[%s %d/%d] %s' % (self.RUNNING, self.hook_index,
  /external/v8/src/wasm/
wasm-interpreter.h 102 // STOPPED ---Run()--> RUNNING ------Pause()-----+-> PAUSED <------+
108 enum State { STOPPED, RUNNING, PAUSED, FINISHED, TRAPPED };
  /frameworks/av/cmds/screenrecord/
Overlay.h 113 enum { UNINITIALIZED, INIT, RUNNING, STOPPING, STOPPED } mState;
  /frameworks/av/services/camera/libcameraservice/api1/client2/
ZslProcessor.h 100 RUNNING,
  /frameworks/base/core/java/android/os/
SystemService.java 37 RUNNING("running"),
96 * Check if given service is {@link State#RUNNING}.
99 return State.RUNNING.equals(getState(service));
AsyncTask.java 45 * running for long periods of time, it is highly recommended you use the various APIs
273 * Indicates that the task is running.
275 RUNNING,
588 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
627 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
636 case RUNNING:
638 + " the task is already running.");
646 mStatus = Status.RUNNING;
672 * still running. Each call to this method will trigger the execution of
  /hardware/interfaces/automotive/evs/1.0/default/
EvsCamera.h 95 RUNNING,
  /packages/apps/DeskClock/src/com/android/deskclock/data/
Stopwatch.java 23 import static com.android.deskclock.data.Stopwatch.State.RUNNING;
30 public enum State { RESET, RUNNING, PAUSED }
40 /** Elapsed time in ms the stopwatch was last started; {@link #UNUSED} if not running. */
46 /** Elapsed time in ms this stopwatch has accumulated while running. */
61 public boolean isRunning() { return mState == RUNNING; }
67 if (mState != RUNNING) {
86 * @return a copy of this stopwatch that is running
89 if (mState == RUNNING) {
93 return new Stopwatch(RUNNING, now(), wallClock(), getTotalTime());
100 if (mState != RUNNING) {
    [all...]
Timer.java 34 import static com.android.deskclock.data.Timer.State.RUNNING;
42 RUNNING(1), PAUSED(2), EXPIRED(3), RESET(4), MISSED(5);
93 /** The time at which the timer was last started; {@link #UNUSED} when not running. */
128 public boolean isRunning() { return mState == RUNNING; }
160 if (mState != RUNNING && mState != EXPIRED && mState != MISSED) {
171 if (mState != RUNNING && mState != EXPIRED && mState != MISSED) {
191 * @return a copy of this timer that is running, expired or missed
194 if (mState == RUNNING || mState == EXPIRED || mState == MISSED) {
198 return new Timer(mId, RUNNING, mLength, mTotalLength, now(), wallClock(), mRemainingTime,
347 state = RUNNING;
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 62 * running for long periods of time, it is highly recommended you use the various APIs
284 * Indicates that the task is running.
286 RUNNING,
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
592 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
600 case RUNNING:
602 + " the task is already running.");
610 mStatus = Status.RUNNING;
635 * still running. Each call to this method will trigger the execution of
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 62 * running for long periods of time, it is highly recommended you use the various APIs
284 * Indicates that the task is running.
286 RUNNING,
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
592 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
600 case RUNNING:
602 + " the task is already running.");
610 mStatus = Status.RUNNING;
635 * still running. Each call to this method will trigger the execution of
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
AsyncTask.java 62 * running for long periods of time, it is highly recommended you use the various APIs
284 * Indicates that the task is running.
286 RUNNING,
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
592 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
600 case RUNNING:
602 + " the task is already running.");
610 mStatus = Status.RUNNING;
635 * still running. Each call to this method will trigger the execution of
  /external/testng/src/main/java/org/testng/internal/
DynamicGraph.java 31 READY, RUNNING, FINISHED
114 case RUNNING: m_nodesRunning.add(node); break;
139 case RUNNING: return m_nodesRunning.size();
156 result.append("\n Running:" + m_nodesRunning);
181 String RUNNING = "[style=filled color=green]";
191 color = freeNodes.contains(n) ? FREE : RUNNING;
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
BenchmarkState.java 55 private static final int RUNNING = 2; // The benchmark is running.
124 // This method can be called only when the timer is running.
139 "Unable to resume the benchmark. The benchmark is already running.");
164 mState = RUNNING;
205 case RUNNING:
  /frameworks/support/compat/java/android/support/v4/content/
ModernAsyncTask.java 102 * Indicates that the task is running.
104 RUNNING,
391 * {@link android.os.AsyncTask.Status#RUNNING} or
425 * {@link android.os.AsyncTask.Status#RUNNING}
432 case RUNNING:
434 + " the task is already running.");
444 mStatus = Status.RUNNING;
465 * still running. Each call to this method will trigger the execution of
  /packages/apps/Camera2/src/com/android/camera/burst/
BurstFacadeImpl.java 48 RUNNING,
79 Log.e(TAG, "Exception while running the burst" + error);
111 * running.
131 BurstModuleState.RUNNING)) {
171 if (mBurstModuleState.compareAndSet(BurstModuleState.RUNNING,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/offscreen/
ProjectionOffscreenActivity.java 71 private enum TestStatus { PASSED, FAILED, RUNNING };
72 protected TestStatus mTestStatus = TestStatus.RUNNING;
81 Log.e(TAG, "Error running onKeyEvent", e);
105 mStatusView.setText("Running test...");
200 && mTestStatus == TestStatus.RUNNING
214 if (mTestStatus == TestStatus.RUNNING) {
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 40 * Current mode of application: READY to run, RUNNING, or you have already lost. static final
46 public static final int RUNNING = 2;
268 setMode(RUNNING);
277 setMode(RUNNING);
324 * Updates the current mode of the application (RUNNING or PAUSED or the like) as well as sets
333 if (newMode == RUNNING && oldMode != RUNNING) {
367 * @return the Game state as Running, Ready, Paused, Lose
407 * Handles the basic update loop, checking to see if we are in the running state, determining if
411 if (mMode == RUNNING) {
    [all...]

Completed in 1968 milliseconds

1 2 3 4 5 6 7 8 9