HomeSort by relevance Sort by last modified time
    Searched refs:RUNNING (Results 26 - 50 of 267) sorted by null

12 3 4 5 6 7 8 91011

  /external/autotest/site_utils/
job_overhead.py 27 _qs.RUNNING, _qs.GATHERING, _qs.PARSING]
  /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);
ServiceManager.java 28 import static com.google.common.util.concurrent.Service.State.RUNNING;
154 * {@linkplain State#RUNNING running} state. If any services fail during start up or
156 * services have started {@linkplain State#RUNNING running} then this method will not be called.
294 * will become healthy after all the component services have reached the {@linkplain State#RUNNING
295 * running} state.
307 * reached the {@linkplain State#RUNNING running} state.
355 * Returns true if all services are currently in the {@linkplain State#RUNNING running} state
744 @Override public void running() { method in class:ServiceManager.ServiceListener
    [all...]
  /frameworks/av/cmds/screenrecord/
Overlay.h 113 enum { UNINITIALIZED, INIT, RUNNING, STOPPING, STOPPED } mState;
  /packages/services/Car/evs/manager/
HalCamera.h 72 RUNNING,
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractExecutionThreadServiceTest.java 69 assertEquals(Service.State.RUNNING, service.state());
99 service.expectedShutdownState = Service.State.RUNNING;
103 assertEquals(Service.State.RUNNING, service.state());
136 assertEquals(State.RUNNING, state());
256 assertEquals(Service.State.RUNNING, service.state());
  /external/autotest/scheduler/
monitor_db_functional_test.py 436 self._check_statuses(queue_entry, HqeStatus.RUNNING, HostStatus.RUNNING)
556 self._check_statuses(queue_entry, HqeStatus.RUNNING)
683 self._check_statuses(queue_entries[0], HqeStatus.RUNNING)
735 # recovery should re-execute a Running HQE if no process is found
737 queue_entry.status = HqeStatus.RUNNING
740 queue_entry.host.status = HostStatus.RUNNING
851 self._check_statuses(queue_entry2, HqeStatus.RUNNING,
852 HostStatus.RUNNING)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
StatusTest.java 54 * <BR>&nbsp;&nbsp; - returned thread status is RUNNING status;
84 if (threadStatus != JDWPConstants.ThreadStatus.RUNNING) {
113 * <BR>&nbsp;&nbsp; - returned thread status is RUNNING status;
141 if (threadStatus != JDWPConstants.ThreadStatus.RUNNING) {
  /external/valgrind/memcheck/tests/
client-msg-as-xml.stderr.exp 27 <state>RUNNING</state>
long_namespace_xml.stderr.exp 27 <state>RUNNING</state>
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphRunner.java 56 public static final int RUNNING = 4;
198 if (mState.check(State.RUNNING)) {
249 if (mState.current() == State.RUNNING) {
256 if (mState.addState(State.HALTED) && mState.check(State.RUNNING)) {
263 if (mState.current() == State.RUNNING) {
306 mState.setState(State.RUNNING);
326 if (mState.check(State.RUNNING)) {
347 if (mState.current() == State.RUNNING) {
374 Log.w("GraphRunner", "State is not running! (" + mState.current() + ")");
638 * Returns the currently running graph-runner
    [all...]
  /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) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
FieldAccessTest.java 75 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
FieldModificationTest.java 75 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
  /hardware/interfaces/automotive/evs/1.0/default/
EvsCamera.h 95 RUNNING,
  /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
  /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/base/core/java/android/os/
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
  /frameworks/base/services/core/java/com/android/server/connectivity/
Nat464Xlat.java 57 // The network we're running on, and its type.
63 RUNNING, // start() called, and the stacked iface is known to be up.
97 * A true result corresponds to internal states STARTING and RUNNING.
114 return mState == State.RUNNING;
147 * Enter running state just after getting confirmation that the stacked interface is up, and
152 mState = State.RUNNING;
230 * has no idea that 464xlat is running on top of it.
241 Slog.d(TAG, "clatd running, updating NAI for " + mIface);
292 * Adds stacked link on base link and transitions to RUNNING state.
  /frameworks/support/core-utils/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
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
StreamServiceTest.java 102 assertEquals(State.RUNNING, service.state());
136 assertEquals(State.RUNNING, service.state());
155 assertEquals(State.RUNNING, service.state());
226 @Override public void running() {}
  /external/python/cpython2/Demo/turtle/
tdemo_nim.py 64 self.game.state = Nim.RUNNING
111 if self.game.state != Nim.RUNNING:
207 RUNNING = 1

Completed in 2565 milliseconds

12 3 4 5 6 7 8 91011