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

1 2 3 4 5 6 7 8 91011

  /frameworks/support/work/workmanager/src/main/java/androidx/work/
State.java 25 * The status for work that is enqueued (hasn't completed and isn't running)
32 RUNNING,
  /external/skia/infra/bots/recipe_modules/swarming/
state.py 18 RUNNING = 0x10 # 16
27 RUNNING, PENDING, EXPIRED, TIMED_OUT, BOT_DIED, CANCELED, COMPLETED)
28 STATES_RUNNING = (RUNNING, PENDING)
34 RUNNING: 'Running',
  /external/skqp/infra/bots/recipe_modules/swarming/
state.py 18 RUNNING = 0x10 # 16
27 RUNNING, PENDING, EXPIRED, TIMED_OUT, BOT_DIED, CANCELED, COMPLETED)
28 STATES_RUNNING = (RUNNING, PENDING)
34 RUNNING: 'Running',
  /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/apct-tests/perftests/multiuser/src/android/multiuser/
BenchmarkRunner.java 34 private static final int RUNNING = 1; // The benchmark is running.
49 mState = RUNNING;
52 case RUNNING:
88 if (mState != RUNNING) {
89 throw new IllegalStateException("Unable to pause the runner: not running currently");
97 throw new IllegalStateException("Unable to resume the runner: already running");
100 mState = RUNNING;
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
ManualBenchmarkState.java 69 private static final int RUNNING = 2; // The benchmark is running.
90 mState = RUNNING;
116 case RUNNING: {
  /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) {
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanManagerMXBean.java 68 * This state tells whether directory scans are running, scheduled,
81 RUNNING,
135 * running or scheduled, or the MBean is closed.
146 * Stops current running or scheduled scan sessions if any.
181 * running or scheduled, or the MBean is closed.
227 * running or scheduled, or the MBean is closed.
263 * configuration as long as a scan session is scheduled or running.
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanManagerMXBean.java 68 * This state tells whether directory scans are running, scheduled,
81 RUNNING,
135 * running or scheduled, or the MBean is closed.
146 * Stops current running or scheduled scan sessions if any.
181 * running or scheduled, or the MBean is closed.
227 * running or scheduled, or the MBean is closed.
263 * configuration as long as a scan session is scheduled or running.
  /tools/repohooks/
pre-upload.py 61 RUNNING = COLOR.color(COLOR.YELLOW, 'RUNNING')
95 status_line = '[%s %d/%d] %s' % (self.RUNNING, self.hook_index,
  /external/python/cpython2/Demo/turtle/
tdemo_nim.py 64 self.game.state = Nim.RUNNING
111 if self.game.state != Nim.RUNNING:
207 RUNNING = 1
turtleDemo.py 21 RUNNING = 3
222 "demo running...", "black")
225 self.state = RUNNING
  /external/python/cpython3/Lib/turtledemo/
__main__.py 43 While the EVENTLOOP is running, the examples menu is disabled.
80 still running and must be stopped by the user!
104 RUNNING = 3
337 "demo running...", "black")
340 self.state = RUNNING
nim.py 64 self.game.state = Nim.RUNNING
111 if self.game.state != Nim.RUNNING:
207 RUNNING = 1
  /external/v8/src/wasm/
wasm-interpreter.h 115 // STOPPED ---Run()--> RUNNING ------Pause()-----+-> PAUSED <------+
121 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));
  /hardware/google/av/media/codecs/base/include/
SimpleC2Component.h 149 RUNNING,
  /hardware/interfaces/automotive/evs/1.0/default/
EvsCamera.h 95 RUNNING,

Completed in 1485 milliseconds

1 2 3 4 5 6 7 8 91011