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

1 2 3 4 5 6 7

  /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
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 31 * <li>{@link State#RUNNING} -&gt;</li>
36 * If the service fails while starting, running or stopping, its state will be
59 * State#RUNNING}, {@link State#STOPPING} or {@link State#TERMINATED}. If
80 * Returns {@code true} if this service is {@linkplain State#RUNNING running}.
91 * State#RUNNING running}, this initiates service shutdown and returns
133 * A service in this state is transitioning to {@link #RUNNING}.
140 RUNNING,
AbstractService.java 113 } else if (state == State.RUNNING) {
140 * State#STARTING} to {@link State#RUNNING}.
155 state = State.RUNNING;
159 startup.set(State.RUNNING);
172 * State#STOPPING} nor {@link State#RUNNING}.
177 if (state != State.STOPPING && state != State.RUNNING) {
194 * is running. Invoke this method when a service has failed critically or
208 } else if (state == State.RUNNING) {
209 shutdown.setException(new Exception("Service failed while running", cause));
221 return state() == State.RUNNING;
    [all...]
AbstractFuture.java 49 * failure in changing the future's state. Valid states are running,
209 * RUNNING to COMPLETING, that thread will then set the result of the
220 static final int RUNNING = 0;
341 * from {@link #RUNNING}. If the state is not in the RUNNING state we
351 boolean doCompletion = compareAndSetState(RUNNING, COMPLETING);
  /external/chromium_org/content/renderer/device_sensors/
device_sensor_event_pump.h 41 (state_ == RUNNING && timer_.IsRunning()));
61 // PENDING_START -> RUNNING
63 // RUNNING -> STOPPED
66 RUNNING,
82 state_ = RUNNING;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractExecutionThreadServiceTest.java 63 assertEquals(Service.State.RUNNING, service.state());
80 assertEquals(Service.State.RUNNING, service.state());
82 assertEquals(Service.State.RUNNING, service.state());
93 assertEquals(Service.State.RUNNING, service.start().get());
94 assertEquals(Service.State.RUNNING, service.startAndWait());
104 service.expectedShutdownState = Service.State.RUNNING;
108 assertEquals(Service.State.RUNNING, service.state());
141 assertEquals(State.RUNNING, state());
250 assertEquals(Service.State.RUNNING, service.state());
AbstractServiceTest.java 43 assertFalse(service.running);
46 assertEquals(Service.State.RUNNING, service.state());
48 assertTrue(service.running);
53 assertFalse(service.running);
60 assertEquals(Service.State.RUNNING, service.state());
71 assertEquals(Service.State.RUNNING, service.state());
83 assertEquals(Service.State.RUNNING, service.state());
95 assertEquals(Service.State.RUNNING, service.state());
109 assertEquals(Service.State.RUNNING, service.state());
121 boolean running = false field in class:AbstractServiceTest.NoOpService
    [all...]
AbstractIdleServiceTest.java 57 assertEquals(Service.State.RUNNING, service.state());
70 assertEquals("NullService [" + Service.State.RUNNING + "]", service.toString());
  /external/oprofile/libop/
op_interface.h 44 RUNNING = 2
  /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));
  /external/chromium_org/content/browser/service_worker/
service_worker_version.cc 72 if (version->running_status() != ServiceWorkerVersion::RUNNING) {
74 // it looks it's not running yet.
75 NOTREACHED() << "The worker's not running after successful StartWorker";
122 // EmbeddedWorker's dtor sends StopWorker if it's still running.
170 case RUNNING:
236 if (running_status() != RUNNING) {
255 if (running_status() != RUNNING) {
274 if (running_status() != RUNNING) {
294 if (running_status() != RUNNING) {
329 if (running_status() != RUNNING) {
    [all...]
  /external/chromium_org/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/
SocketTunnelClient.java 27 INITIAL, RUNNING, STOPPED
206 if (!mState.compareAndSet(State.INITIAL, State.RUNNING)) {
221 if (!mState.compareAndSet(State.RUNNING, State.STOPPED)) {
252 if (mState.get() == State.RUNNING) {
260 if (mState.get() != State.RUNNING) {
  /frameworks/base/libs/hwui/
Animator.h 60 ANDROID_API void start() { mStagingPlayState = RUNNING; onStagingPlayStateChanged(); }
69 bool isRunning() { return mPlayState == RUNNING; }
91 RUNNING,
Animator.cpp 97 if (mPlayState == RUNNING) {
129 if (mPlayState < RUNNING) {
138 // to call setValue even if the animation isn't yet running or is still
146 if (mPlayState == RUNNING && mDuration > 0) {
217 if (mStagingPlayState == 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...]
  /external/chromium_org/base/win/
metro.h 34 RUNNING,
71 // Returns true if this process is running as an immersive program
  /external/chromium_org/components/sync_driver/
proxy_data_type_controller.cc 31 state_ = RUNNING;
non_ui_data_type_controller.cc 42 "Model already running",
138 DCHECK_EQ(state(), RUNNING);
186 new_state = RUNNING;
209 if (new_state != RUNNING && state() != NOT_RUNNING && state() != STOPPING) {
222 if (state_ != RUNNING) {
281 DCHECK_EQ(state_, RUNNING);
  /frameworks/av/cmds/screenrecord/
Overlay.h 112 enum { UNINITIALIZED, INIT, RUNNING, STOPPING, STOPPED } mState;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
StatusTest.java 53 * <BR>&nbsp;&nbsp; - returned thread status is RUNNING status;
83 if (threadStatus != JDWPConstants.ThreadStatus.RUNNING) {
112 * <BR>&nbsp;&nbsp; - returned thread status is RUNNING status;
140 if (threadStatus != JDWPConstants.ThreadStatus.RUNNING) {
  /external/chromium_org/chrome/browser/sync/glue/
search_engine_data_type_controller_unittest.cc 100 EXPECT_EQ(sync_driver::DataTypeController::RUNNING,
156 EXPECT_EQ(sync_driver::DataTypeController::RUNNING,
  /external/oprofile/module/
oprofile.c 33 * against user that try to change through /proc/sys/dev/oprofile/ * running
133 * fully running !
137 if (state == RUNNING)
143 if (state == RUNNING)
191 /* ignore note if we're not up and running fully */
192 if (state != RUNNING)
324 case RUNNING:
527 state = RUNNING;
542 if (state == RUNNING) {
708 if (state != RUNNING)
    [all...]
  /external/valgrind/main/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...]

Completed in 703 milliseconds

1 2 3 4 5 6 7