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

/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/tests/systemproperties/
H A Drun_core_systemproperties_test.sh12 echo You must lunch before running this test.
/frameworks/base/tests/CoreTests/android/core/
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/core/java/android/widget/
H A DAdapterViewFlipper.java192 // by default when we update running, we want the
206 boolean running = !mAdvancedByHost && mVisible && mStarted && mUserPresent
208 if (running != mRunning) {
209 if (running) {
216 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;
H A DViewFlipper.java159 boolean running = mVisible && mStarted && mUserPresent;
160 if (running != mRunning) {
161 if (running) {
168 mRunning = running;
/frameworks/base/tests/SmokeTest/tests/
H A DAndroid.mk13 # running the tests using an instrumentation targeting SmokeTestApp, we
/frameworks/base/packages/WAPPushManager/tests/
H A DAndroid.mk30 # running the tests using an instrumentation targeting Eamil, we
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java292 boolean running;
295 running = mBackgroundOp.onRun();
297 } while (evalRepeat(running, true) && running);
305 boolean running;
308 running = mForegroundOp.onRun();
310 } while (evalRepeat(true, running) && running);
/frameworks/base/core/jni/
H A Dandroid_bluetooth_common.h44 // but this is only possible when the adapter is up (and hcid is running).
92 /* flag to indicate if the event loop thread is running */
93 bool running; member in struct:android::event_loop_native_data_t
H A Dandroid_server_BluetoothEventLoop.cpp651 nat->running = true;
717 nat->running = false;
815 nat->running = false;
826 if (nat->running) {
/frameworks/compile/slang/tests/
H A Dtest.py157 ' -n, --no-cleanup Don\'t clean up after running tests\n'
/frameworks/base/docs/html/resources/
H A Dresources-data.js232 en: 'This article discusses the threading model used by Android applications and how applications can ensure best UI performance by spawning worker threads to handle long-running operations, rather than handling them in the main thread. The article also explains the API that your application can use to interact with Android UI toolkit components running on the main thread and spawn managed worker threads.'
487 en: 'An application that demonstrates how to launch the built-in contact picker from within an activity. This sample also uses reflection to ensure that the correct version of the contacts API is used, depending on which API level the application is running under.'
537 en: 'An image gallery application that demonstrates a variety of new APIs in Android 3.0 (Honeycomb). In addition to providing a tablet-optimized design, it also supports handsets running Android 4.0 (Ice Cream Sandwich) and beyond, so is a good example of how to reuse Fragments to support different screen sizes.'

Completed in 2043 milliseconds