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

1 2

  /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,
  /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);
501 * Display the time information of running a test plan.
516 * During running test, the process may be interrupted. To avoid
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
FutureTask.java 38 * Creates a <tt>FutureTask</tt> that will, upon running, execute the
51 * Creates a <tt>FutureTask</tt> that will, upon running, execute the
165 /** State value representing that task is running */
166 private static final int RUNNING = 1;
180 * The thread running task. When nulled after set/cancel, this
298 if (!compareAndSetState(READY, RUNNING))
302 if (getState() == RUNNING) { // recheck after setting thread
317 if (!compareAndSetState(READY, RUNNING))
321 if (getState() == RUNNING)
324 return compareAndSetState(RUNNING, READY)
    [all...]
ThreadPoolExecutor.java 48 * than corePoolSize threads are running, a new thread is created to
51 * threads running, a new thread will be created only if the queue is
106 * <li> If fewer than corePoolSize threads are running, the Executor
110 * <li> If corePoolSize or more threads are running, the Executor
287 * runState, indicating whether running, shutting down etc
306 * RUNNING: Accept new tasks and process queued tasks
319 * RUNNING -> SHUTDOWN
321 * (RUNNING or SHUTDOWN) -> STOP
340 private final AtomicInteger ctl = new AtomicInteger(ctlOf(RUNNING, 0));
345 private static final int RUNNING = -1 << COUNT_BITS
    [all...]
  /external/oprofile/libop/
op_interface.h 44 RUNNING = 2
  /external/guava/src/com/google/common/util/concurrent/
AbstractService.java 113 } else if (state == State.RUNNING) {
152 * State#STARTING} to {@link State#RUNNING}.
167 state = State.RUNNING;
171 startup.transitionSucceeded(State.RUNNING);
184 * State#STOPPING} nor {@link State#RUNNING}.
189 if (state != State.STOPPING && state != State.RUNNING) {
206 * is running. Invoke this method when a service has failed critically or
229 return state() == State.RUNNING;
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.
  /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
  /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) {
  /external/opencore/nodes/streaming/jitterbuffernode/jitterbuffer/common/src/
pvmf_jb_event_notifier.cpp 119 //Make sure clock is in running state
120 if (irNonDecreasingClock.GetState() != PVMFMediaClock::RUNNING)
132 //Make sure clock is in running state
133 if (irClientPlaybackClock.GetState() != PVMFMediaClock::RUNNING)
144 //Make sure clock is in running state
145 if (irEstimatedServerClock.GetState() != PVMFMediaClock::RUNNING)
210 //Make sure clock is in running state
211 if (irNonDecreasingClock.GetState() != PVMFMediaClock::RUNNING)
223 //Make sure clock is in running state
224 if (irClientPlaybackClock.GetState() != PVMFMediaClock::RUNNING)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LiveFolder.java 78 if (mLoadingTask != null && mLoadingTask.getStatus() == AsyncTask.Status.RUNNING) {
93 if (mLoadingTask != null && mLoadingTask.getStatus() == AsyncTask.Status.RUNNING) {
  /dalvik/libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 40 RUNNING,
66 * Returns true if the profiler is running.
69 return state == State.RUNNING;
87 state = State.RUNNING;
328 sb.append(" running:\n");
340 * Gets the profiler. The profiler is not running by default. Start it
  /external/opencore/pvmi/pvmf/src/
pvmf_media_clock.cpp 84 if (RUNNING == iState)
179 if (iState == RUNNING)
230 if (iState == RUNNING)
288 // Change to running state
289 SetClockState(RUNNING);
300 // Can only pause during running state
301 if (iState != RUNNING)
321 // Can only stop when running or paused
392 // Clock can only be adjusted when it is running
393 if (iState != RUNNING)
    [all...]
  /external/opencore/android/
android_audio_output.cpp 299 // if running, update clock
317 // wake up the audio output thread to process this buffer only if clock has started running
318 if (iActiveTiming->clockState() == PVMFMediaClock::RUNNING) {
406 case PVMFMediaClock::RUNNING:
428 LOGV("clock running and no data queued - don't start track");
android_audio_mio.cpp 673 case PVMFMediaClock::RUNNING:
674 LOGV("A/V clock running");
702 if (iClock && (iClockState == PVMFMediaClock::RUNNING)) {
  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 249 assertEquals(AsyncTask.Status.RUNNING, mAsyncTask.getStatus());
  /external/opencore/android/author/
android_camera_input.cpp     [all...]
  /external/opencore/pvmi/pvmf/include/
pvmf_media_clock.h 22 * and accepts user specified source for the free running clock.
109 PVMF_MEDIA_CLOCK_ADJUST_ERR_INVALID_STATE, // If adjustment is attempted when clock is not running.
325 * resumes the clock from the last paused time. Clock goes to RUNNING state.
332 * Pauses the running clock. Saves the clock time when pausing as the paused time.
340 * Stops the running or paused clock and start time is reset to 0. Clock goes to STOPPED state.
363 * RUNNING state. For backward adjustments, clock freezes internally till the adjusted time.
373 * Stops the running or paused clock and start time is reset to 0. Clock goes to STOPPED state.
    [all...]
  /external/opencore/nodes/pvmediaoutputnode/src/
pv_media_output_node_inport.cpp 489 if (iClock->GetState() == PVMFMediaClock::RUNNING)
    [all...]
  /external/opencore/pvmi/media_io/pvmi_mio_avi_wav_fileinput/src/
pvmi_mio_avi_wav_file.cpp     [all...]
  /external/opencore/nodes/streaming/jitterbuffernode/src/
pvmf_jitter_buffer_node.cpp     [all...]
  /prebuilt/common/osgi/
osgi.jar 
  /external/opencore/nodes/pvdownloadmanagernode/src/
pvmf_downloadmanager_node.cpp     [all...]
  /external/opencore/nodes/pvmp4ffparsernode/src/
pvmf_mp4ffparser_node.cpp     [all...]

Completed in 714 milliseconds

1 2