/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/ |
BreakpointTest.java | 79 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
|
FieldAccessTest.java | 74 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
|
FieldModificationTest.java | 74 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
|
BreakpointOnCatchTest.java | 91 checkThreadState(eventThreadID, JDWPConstants.ThreadStatus.RUNNING,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
transport.py | 69 self.__state = remote.RpcState.RUNNING 104 if self.__state == remote.RpcState.RUNNING: 120 if self.__state != remote.RpcState.RUNNING: 122 'RPC must be in RUNNING state to change to %s' % state) 123 if state == remote.RpcState.RUNNING: 124 raise RpcStateError('RPC is already in RUNNING state')
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
HotSwapHandler.java | 141 throw new IllegalStateException(RUNNING);
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
ZslProcessor.h | 101 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
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/api/map_job/ |
map_job_control.py | 22 RUNNING = "running" 27 STATUS_ENUM = [RUNNING, FAILED, ABORTED, SUCCESS] 65 return self.RUNNING 76 When a job is running, counter values won't be very accurate. 88 When a job is running, counter values won't be very accurate.
|
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 45 * running for long periods of time, it is highly recommended you use the various APIs 271 * Indicates that the task is running. 273 RUNNING, 553 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}. 592 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}. 601 case RUNNING: 603 + " the task is already running."); 611 mStatus = Status.RUNNING; 637 * still running. Each call to this method will trigger the execution of
|
/frameworks/support/v4/java/android/support/v4/content/ |
ModernAsyncTask.java | 96 * Indicates that the task is running. 98 RUNNING, 372 * {@link android.os.AsyncTask.Status#RUNNING} or 406 * {@link android.os.AsyncTask.Status#RUNNING} 413 case RUNNING: 415 + " the task is already running."); 423 mStatus = Status.RUNNING; 444 * still running. Each call to this method will trigger the execution of
|
/external/autotest/scheduler/ |
monitor_db_functional_test.py | 447 self._check_statuses(queue_entry, HqeStatus.RUNNING, HostStatus.RUNNING) 569 self._check_statuses(queue_entry, HqeStatus.RUNNING) 700 self._check_statuses(queue_entries[0], HqeStatus.RUNNING) 752 # recovery should re-execute a Running HQE if no process is found 754 queue_entry.status = HqeStatus.RUNNING 757 queue_entry.host.status = HostStatus.RUNNING [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
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...] |
/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() {}
|
/frameworks/av/cmds/screenrecord/ |
Overlay.cpp | 85 assert(mState == RUNNING); 113 ALOGV("Overlay thread running"); 114 mState = RUNNING; 117 while (mState == RUNNING) {
|
/development/samples/Snake/src/com/example/android/snake/ |
Snake.java | 32 * will you become longer, but you'll move faster. Running into yourself or the walls will end the 81 if (mSnakeView.getGameState() == SnakeView.RUNNING) { 95 // If the game is not running then on touching any part of the screen
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAsyncTask.java | 77 status = AsyncTask.Status.RUNNING;
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerItem.java | 104 case RUNNING: {
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
SafeAsyncTask.java | 101 if (getStatus() == Status.RUNNING) { 102 // Cancel the task if it's still running.
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
JDWPConstants.java | 42 public static final byte RUNNING = 1; 61 case RUNNING: 62 return "RUNNING";
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/ |
protorpc.js | 85 RUNNING: 'RUNNING', 145 ProtoRpc.RPC.prototype.state_ = ProtoRpc.RPC.State.RUNNING; 169 if (this.state_ != ProtoRpc.RPC.State.RUNNING) { 239 * running the RPC.
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AbstractIdleServiceTest.java | 52 assertEquals(Service.State.RUNNING, service.state()); 96 assertEquals(Service.State.RUNNING, service.state()); 170 assertEquals("TestService [RUNNING]", service.toString());
|