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

1 2 3 4 5

  /frameworks/base/awt/java/awt/
ModalContext.java 29 private boolean running = false; field in class:ModalContext
42 running = true;
47 * Leave the modal loop running in this context
53 running = false;
58 * @return modal loop is currently running in this context
61 return running;
  /frameworks/base/tests/SslLoad/src/com/android/sslload/
SslLoad.java 49 private boolean running = false; field in class:SslLoad
71 running = false;
77 running = !running;
78 button.setText(running ? "STOP" : "GO");
79 if (running) {
89 while (!running) {
  /frameworks/base/services/java/com/android/server/am/
DeviceMonitor.java 43 /** Is the monitor currently running? */
44 private boolean running = false; field in class:DeviceMonitor
198 running = false;
205 while (!running) {
216 if (!running) {
217 running = true;
  /frameworks/base/core/java/android/widget/
ViewFlipper.java 147 boolean running = mVisible && mStarted && mUserPresent;
148 if (running != mRunning) {
149 if (running) {
156 mRunning = running;
Chronometer.java 193 * be held as the chronometer is running, via {@link #start}.
251 boolean running = mVisible && mStarted;
252 if (running != mRunning) {
253 if (running) {
260 mRunning = running;
  /external/junit/src/junit/framework/
TestCase.java 131 } catch (Throwable running) {
132 exception= running;
  /frameworks/base/tests/CoreTests/android/core/
MonitorTest.java 329 while (MonitorTest.running) {
338 private static Boolean running = false; field in class:MonitorTest
352 running = true;
374 running = false;
385 static Boolean running = false; field in class:MonitorTest.CompareAndExchange
396 running = true;
412 running = false;
435 // System.out.println(getName() + " running");
437 while (CompareAndExchange.running) {
TestWebServer.java 222 boolean running = false; field in class:TestWebServer.AcceptThread
253 running = true;
255 while (running) {
260 running = false;
279 running = false;
283 running = false;
291 running = false;
349 boolean running = false; field in class:TestWebServer.Worker
375 running = false;
385 running = true
    [all...]
  /external/v8/test/mjsunit/
debug-suspend.js 49 // Get the debug command processor in running state.
59 assertTrue(backtrace_response.running, backtrace_request + ' -> expected running');
68 assertFalse(suspend_response.running, suspend_request + ' -> expected not running');
91 // Stop debugger and check that suspend command changes running flag.
debug-continue.js 61 assertTrue(response.running, request + ' -> expected running');
64 assertFalse(response.running, request + ' -> expected not running');
leakcheck.js 29 * This test is run with leak detection when running special tests.
30 * Don't do too much work here or running it will take forever.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 28 AndroidJUnitDelegate_NoRunnerMsg_s=%1$s is not configured correctly for running tests. See Console for details.
29 AndroidJUnitDelegate_NoTargetMsg_3s=%1$s is not configured correctly for running tests:\nA targetPackage attribute for instrumentation %2$s in its %3$s could not be found\!
  /development/samples/ApiDemos/tests/
Android.mk 13 # running the tests using an instrumentation targeting ApiDemos, we
  /external/strace/
strace.spec 1 Summary: Tracks and displays system calls associated with a running process.
15 received by a running process. Strace can print a record of each
25 Summary: Tracks and displays system calls associated with a running process.
30 received by a running process. Strace can print a record of each
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 13 # running the tests using an instrumentation targeting SmokeTestApp, we
  /system/core/toolbox/
ifconfig.c 67 char *updown, *brdcst, *loopbk, *ppp, *running, *multi; local
121 running = (flags & IFF_RUNNING) ? " running" : "";
123 printf("%s%s%s%s%s%s]\n", updown, brdcst, loopbk, ppp, running, multi);
  /external/openssl/crypto/des/times/
usparc.cc 3 For the ultra sparc, SunC 4.0 cc -fast -Xa -xO5, running 'des_opts'
  /external/v8/benchmarks/
base.js 29 // Simple framework for running the benchmark suites and
36 // running the benchmark, but the running time of these functions will
102 // each individual benchmark to avoid running for too long in the
167 // Notifies the runner that we're done running a single benchmark in
175 // Notifies the runner that we're done with running a suite and that
188 // Notifies the runner that running a benchmark resulted in an error.
213 // This function starts running a suite, but stops between each
262 // Start out running the setup.
  /external/quake/quake/src/WinQuake/
wq.bat 10 echo Options for running WinQuake:
  /external/webkit/WebCore/page/animation/
AnimationBase.h 65 AnimationStateNew, // animation just created, animation not running yet
66 AnimationStateStartWaitTimer, // start timer running, waiting for fire
69 AnimationStateLooping, // response received, animation running, loop timer running, waiting for fire
70 AnimationStateEnding, // received, animation running, end timer running, waiting for fire
88 AnimationStateInputPlayStateRunnning, // play state paused -> running
89 AnimationStateInputPlayStatePaused, // play state running -> paused
103 void updatePlayState(bool running);
114 bool running() const { return !isNew() && !postActive(); function in class:WebCore::AnimationBase
    [all...]
  /packages/apps/Browser/tests/
Android.mk 27 # running the tests using an instrumentation targeting Browser, we
  /packages/apps/Email/tests/
Android.mk 27 # running the tests using an instrumentation targeting Eamil, we
  /packages/apps/Mms/tests/
Android.mk 27 # running the tests using an instrumentation targeting Eamil, we
  /external/qemu/distrib/sdl-1.2.12/src/audio/macrom/
SDL_romaudio.c 117 static volatile UInt32 running = 0; variable
202 if ( running ) {
290 running = 1;
301 running = 0;
  /external/wpa_supplicant/
l2_packet_winpcap.c 63 int running; member in struct:l2_packet_data
133 /* main RX loop that is running in a separate thread */
138 while (l2->running) {
249 l2->running = 1;
286 l2->running = 0;

Completed in 334 milliseconds

1 2 3 4 5