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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/
cpus.h 28 void vm_state_notify(int running, int reason);
vl-android-ui.c 70 int running; member in struct:IOHandlerRecord
81 ioh->running = 1;
88 ioh->running = 0;
113 if (ioh->running) {
  /external/chromium/chrome/browser/ui/views/frame/
browser_non_client_frame_view.h 31 virtual void UpdateThrobber(bool running) = 0;
popup_non_client_frame_view.h 34 virtual void UpdateThrobber(bool running) OVERRIDE;
browser_frame.cc 38 void BrowserFrame::UpdateThrobber(bool running) {
39 browser_frame_view_->UpdateThrobber(running);
browser_frame.h 65 void UpdateThrobber(bool running);
popup_non_client_frame_view.cc 59 void PopupNonClientFrameView::UpdateThrobber(bool running) {
  /external/valgrind/main/none/tests/x86/
yield.c 14 static volatile int alive, running; variable
24 running++;
39 running++;
66 while(running < 2)
  /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;
  /external/oprofile/gui/
oprof_start_util.h 23 bool running; ///< true if daemon is running member in struct:daemon_status
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageQueue.java 40 private boolean running = false; field in class:MessageQueue
55 if (running)
57 running = true;
65 if (!running)
67 running = false;
71 return running;
109 running = false;
115 while (running) {
118 running = false;
142 running = false
    [all...]
  /external/junit/src/junit/framework/
TestCase.java 135 } catch (Throwable running) {
136 exception= running;
  /frameworks/base/core/tests/systemproperties/
run_core_systemproperties_test.sh 12 echo You must lunch before running this test.
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 325 while (OldAndroidMonitorTest.running) {
334 private static Boolean running = false; field in class:OldAndroidMonitorTest
347 running = true;
369 running = false;
380 static Boolean running = false; field in class:OldAndroidMonitorTest.CompareAndExchange
391 running = true;
407 running = false;
430 // System.out.println(getName() + " running");
432 while (CompareAndExchange.running) {
  /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.
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeHandler.java 40 private boolean running = true; field in class:DecodeHandler
50 if (!running) {
56 running = false;
  /frameworks/base/tests/CoreTests/android/core/
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/chromium/chrome/browser/sync/glue/
change_processor.h 60 bool running() { return running_; } function in class:browser_sync::ChangeProcessor
  /frameworks/base/core/java/android/widget/
AdapterViewFlipper.java 208 // 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;
Chronometer.java 196 * 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;
ViewFlipper.java 173 boolean running = mVisible && mStarted && mUserPresent;
174 if (running != mRunning) {
175 if (running) {
182 mRunning = running;
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverServer.java 118 if (DBG) Log.d(TAG, "stop running");
172 boolean running;
174 running = mServerRunning;
180 while (running) {
217 running = mServerRunning;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
MainActivity.java 151 boolean running = ControllerService.isServiceIsRunning();
152 mBtnOpenMultitouch.setEnabled(running);
153 mBtnOpenSensors.setEnabled(running);
154 mBtnToggleService.setChecked(running);
  /development/samples/ApiDemos/tests/
Android.mk 13 # running the tests using an instrumentation targeting ApiDemos, we

Completed in 1678 milliseconds

1 2 3 4 5 6 7 8 91011>>