Searched refs:running (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/awt/java/awt/
H A DModalContext.java29 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/
H A DSslLoad.java49 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/
H A DDeviceMonitor.java43 /** 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/
H A DViewFlipper.java147 boolean running = mVisible && mStarted && mUserPresent;
148 if (running != mRunning) {
149 if (running) {
156 mRunning = running;
H A DChronometer.java193 * 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;
/frameworks/base/tests/CoreTests/android/core/
H A DMonitorTest.java329 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) {
H A DTestWebServer.java222 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
[all...]
/frameworks/base/tests/SmokeTest/tests/
H A DAndroid.mk13 # running the tests using an instrumentation targeting SmokeTestApp, we
/frameworks/base/core/jni/
H A Dandroid_bluetooth_common.h43 // but this is only possible when the adapter is up (and hcid is running).
91 /* flag to indicate if the event loop thread is running */
92 bool running; member in struct:android::event_loop_native_data_t
H A Dandroid_server_BluetoothEventLoop.cpp551 nat->running = true;
612 nat->running = false;
710 nat->running = false;
721 if (nat->running) {
/frameworks/base/core/java/android/server/
H A DBluetoothService.java169 Log.w(TAG, "Bluetooth daemons already running - runtime restart? ");
503 boolean running = false;
504 while ((retryCount-- > 0) && !running) {
509 while ((pollCount-- > 0) && !running) {
511 running = true;
519 if (!running) {

Completed in 255 milliseconds