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.java44 /** Is the monitor currently running? */
45 private boolean running = false; field in class:DeviceMonitor
202 running = false;
209 while (!running) {
220 if (!running) {
221 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.java208 // by default when we update running, we want the
222 boolean running = !mAdvancedByHost && mVisible && mStarted && mUserPresent
224 if (running != mRunning) {
225 if (running) {
232 mRunning = running;
H A DChronometer.java196 * be held as the chronometer is running, via {@link #start}.
254 boolean running = mVisible && mStarted;
255 if (running != mRunning) {
256 if (running) {
263 mRunning = running;
H A DViewFlipper.java173 boolean running = mVisible && mStarted && mUserPresent;
174 if (running != mRunning) {
175 if (running) {
182 mRunning = running;
/frameworks/base/tests/SmokeTest/tests/
H A DAndroid.mk11 # running the tests using an instrumentation targeting SmokeTestApp, we
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java167 * completes running a graph, whether the completion is due to a stop() call
168 * or the filters running out of data to process.
176 * when a graph is already running.
180 throw new RuntimeException("Graph is already running!");
197 throw new RuntimeException("Graph is already running!");
222 throw new RuntimeException("Cannot close graph while it is running!");
239 synchronized private void setRunning(boolean running) { argument
240 isProcessing = running;
/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/packages/WAPPushManager/tests/
H A DAndroid.mk30 # running the tests using an instrumentation targeting Eamil, we
/frameworks/compile/slang/tests/
H A Dtest.py178 ' -n, --no-cleanup Don\'t clean up after running tests\n'
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py22 # run-android-app to start the app in a running state
24 # attach-android-ap to attach to an existing (running) instance of app
234 + "The target is running a different build than the host." \
348 self.running = self.pid != None
359 print "\trunning: " + str(self.running)
361 print "\tgdbserver running: " + str(self.gdbserver_running)
446 # If we are to start running, we can take advantage of am's -W flag to wait
465 raise gdb.GdbError("Unable to detect running app remotely." \
519 # Kill if running
553 if self.running
[all...]
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp790 static bool running = false; local
791 if (!running) {
793 running = true;

Completed in 4345 milliseconds