/external/guava/src/com/google/common/base/ |
Service.java | 30 * <li>{@link State#RUNNING} -></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) {
|
/libcore/luni/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...] |
/external/oprofile/libop/ |
op_interface.h | 44 RUNNING = 2
|
/frameworks/base/core/java/android/animation/ |
TimeAnimator.java | 20 mPlayingState = RUNNING;
|
ValueAnimator.java | 31 * This class provides a simple timing engine for running animations 65 static final int RUNNING = 1; // Playing normally 184 * STOPPED, RUNNING, SEEKED. 531 * actions based on that time. If the animation is already running, then setCurrentPlayTime() 539 if (mPlayingState != RUNNING) { 589 // were already running? 688 * @return the number of milliseconds to delay running the animation 732 * property being animated. This value is only sensible while the animation is running. The main [all...] |
/external/chromium/chrome/browser/sync/glue/ |
data_type_controller.h | 35 RUNNING, // The controller is running and the data type is
|
frontend_data_type_controller_unittest.cc | 154 EXPECT_EQ(DataTypeController::RUNNING, frontend_dtc_->state()); 169 EXPECT_EQ(DataTypeController::RUNNING, frontend_dtc_->state()); 221 EXPECT_EQ(DataTypeController::RUNNING, frontend_dtc_->state()); 238 EXPECT_EQ(DataTypeController::RUNNING, frontend_dtc_->state());
|
frontend_data_type_controller.cc | 67 DCHECK_EQ(state_, RUNNING); 101 state_ = RUNNING;
|
bookmark_data_type_controller_unittest.cc | 107 EXPECT_EQ(DataTypeController::RUNNING, bookmark_dtc_->state()); 124 EXPECT_EQ(DataTypeController::RUNNING, bookmark_dtc_->state()); 204 EXPECT_EQ(DataTypeController::RUNNING, bookmark_dtc_->state());
|
extension_data_type_controller_unittest.cc | 93 EXPECT_EQ(DataTypeController::RUNNING, extension_dtc_->state()); 151 EXPECT_EQ(DataTypeController::RUNNING, extension_dtc_->state());
|
preference_data_type_controller_unittest.cc | 94 EXPECT_EQ(DataTypeController::RUNNING, preference_dtc_->state()); 152 EXPECT_EQ(DataTypeController::RUNNING, preference_dtc_->state());
|
theme_data_type_controller_unittest.cc | 92 EXPECT_EQ(DataTypeController::RUNNING, theme_dtc_->state()); 150 EXPECT_EQ(DataTypeController::RUNNING, theme_dtc_->state());
|
password_data_type_controller.cc | 167 StartDone(!sync_has_nodes ? OK_FIRST_RUN : OK, RUNNING);
|
data_type_manager_impl2_unittest.cc | 117 WillRepeatedly(Return(DataTypeController::RUNNING)); 249 WillRepeatedly(Return(DataTypeController::RUNNING)); 339 WillRepeatedly(Return(DataTypeController::RUNNING)); 481 // Running the task will queue a restart task to the message loop, and
|
/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.
|
/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/chromium/base/synchronization/ |
condition_variable.h | 149 // Note that RUNNING is an unlikely number to have in RAM by accident. 151 enum RunState { SHUTDOWN = 0, RUNNING = 64213 };
|
condition_variable_win.cc | 17 run_state_(RUNNING), 57 if (RUNNING != run_state_) return; // Destruction in progress.
|
/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/ |
long_namespace_xml.stderr.exp | 27 <state>RUNNING</state>
|
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 236 * Indicates that the task is running. 238 RUNNING, 508 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}. 543 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}. 549 case RUNNING: 551 + " the task is already running."); 559 mStatus = Status.RUNNING; 580 * still running. Each call to this method will trigger the execution of
|
/frameworks/support/v4/java/android/support/v4/content/ |
ModernAsyncTask.java | 91 * Indicates that the task is running. 93 RUNNING, 363 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}. 398 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}. 404 case RUNNING: 406 + " the task is already running."); 414 mStatus = Status.RUNNING; 435 * still running. Each call to this method will trigger the execution of
|
/hardware/ti/omap4xxx/camera/inc/ |
BaseCameraAdapter.h | 171 RUNNING
|