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

  /external/chromium/base/
condition_variable.h 147 // Note that RUNNING is an unlikely number to have in RAM by accident.
149 enum RunState { SHUTDOWN = 0, RUNNING = 64213 };
  /external/guava/src/com/google/common/base/
Service.java 30 * <li>{@link State#RUNNING} -&gt;</li>
35 * If the service fails while starting, running or stopping, its state will be
57 * State#RUNNING}, {@link State#STOPPING} or {@link State#TERMINATED}. If
79 * Returns {@code true} if this service is {@link State#RUNNING running}.
89 * If the service is {@link State#STARTING} or {@link State#RUNNING}, this
131 * A service in this state is transitioning to {@link #RUNNING}.
138 RUNNING,
  /external/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 42 * failure in changing the future's state. Valid states are running,
45 * and running tasks.
73 * Checks if the sync is not in the running state.
171 * RUNNING to COMPLETING, that thread will then set the result of the
182 static final int RUNNING = 0;
303 * from {@link #RUNNING}. If the state is not in the RUNNING state we
311 if (compareAndSetState(RUNNING, COMPLETING)) {
318 // The state was not RUNNING, so there are no valid transitions.
  /cts/tools/host/src/com/android/cts/
HostTimer.java 26 * <li> Use it as general timer to guard host from running for
35 private final static int RUNNING = 1;
120 mStatus = RUNNING;
153 if (mStatus == RUNNING) {
TestSession.java 23 * Represents a runtime session for a test plan, takes charge in running a
37 INIT, STARTED, INSTALLING, RUNNING, PAUSED, RESUMED, STOPPED, FINISHED
46 /** Running count of tests executed since last reboot. */
424 Log.e("Got exception when running the package", e);
500 * Display the time information of running a test plan.
515 * During running test, the process may be interrupted. To avoid
  /external/oprofile/libop/
op_interface.h 44 RUNNING = 2
  /frameworks/base/core/java/android/os/
AsyncTask.java 169 * Indicates that the task is running.
171 RUNNING,
374 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
379 case RUNNING:
381 + " the task is already running.");
389 mStatus = Status.RUNNING;
402 * still running. Each call to this method will trigger the execution of
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 39 * Creates a <tt>FutureTask</tt> that will, upon running, execute the
52 * Creates a <tt>FutureTask</tt> that will, upon running, execute the
166 /** State value representing that task is running */
167 private static final int RUNNING = 1;
181 * The thread running task. When nulled after set/cancel, this
299 if (!compareAndSetState(READY, RUNNING))
303 if (getState() == RUNNING) { // recheck after setting thread
318 if (!compareAndSetState(READY, RUNNING))
322 if (getState() == RUNNING)
325 return compareAndSetState(RUNNING, READY)
    [all...]
ThreadPoolExecutor.java 55 * than corePoolSize threads are running, a new thread is created to
58 * threads running, a new thread will be created only if the queue is
116 * <li> If fewer than corePoolSize threads are running, the Executor
120 * <li> If corePoolSize or more threads are running, the Executor
298 * runState, indicating whether running, shutting down etc
317 * RUNNING: Accept new tasks and process queued tasks
330 * RUNNING -> SHUTDOWN
332 * (RUNNING or SHUTDOWN) -> STOP
351 private final AtomicInteger ctl = new AtomicInteger(ctlOf(RUNNING, 0));
356 private static final int RUNNING = -1 << COUNT_BITS
    [all...]
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 43 * Current mode of application: READY to run, RUNNING, or you have already
50 public static final int RUNNING = 2;
268 setMode(RUNNING);
278 setMode(RUNNING);
324 * Updates the current mode of the application (RUNNING or PAUSED or the like)
333 if (newMode == RUNNING & oldMode != RUNNING) {
393 * Handles the basic update loop, checking to see if we are in the running
397 if (mMode == RUNNING) {
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 491 milliseconds