HomeSort by relevance Sort by last modified time
    Searched refs:running (Results 51 - 75 of 694) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libmicrohttpd/src/testcurl/https/
test_https_get_select.c 88 int running; local
173 curl_multi_perform (multi, &running);
174 if (running == 0)
176 msg = curl_multi_info_read (multi, &running);
  /external/v8/build/
build-ctags.sh 10 Debian or a related flavor of Linux, you may want to try running
  /frameworks/base/core/java/android/widget/
AdapterViewFlipper.java 222 // by default when we update running, we want the
236 boolean running = !mAdvancedByHost && mVisible && mStarted && mUserPresent
238 if (running != mRunning) {
239 if (running) {
245 mRunning = running;
  /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);
  /build/core/combo/arch/x86_64/
x86_64.mk 5 # that are run in the emulator under KVM emulation (i.e. running directly on
  /development/samples/ApiDemos/tests/
Android.mk 13 # running the tests using an instrumentation targeting ApiDemos, we
  /external/protobuf/
autogen.sh 12 Could not find source code. Make sure you are running this script from the
generate_descriptor_proto.sh 15 Could not find source code. Make sure you are running this script from the
  /external/v8/test/mjsunit/es6/
generators-mirror.js 78 assertEquals('running', mirror.status());
80 TestInternalProperties(mirror, 'running');
98 assertEquals('running', mirror.status());
100 TestInternalProperties(mirror, 'running', obj);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 218 public void setIconAnimationRunning(boolean running) {
219 setIconAnimationRunning(running, mPublicLayout);
220 setIconAnimationRunning(running, mPrivateLayout);
222 setIconAnimationRunningForChild(running, mChildrenContainer.getHeaderView());
227 child.setIconAnimationRunning(running);
230 mIconAnimationRunning = running;
233 private void setIconAnimationRunning(boolean running, NotificationContentView layout) {
238 setIconAnimationRunningForChild(running, contractedChild);
239 setIconAnimationRunningForChild(running, expandedChild);
240 setIconAnimationRunningForChild(running, headsUpChild)
    [all...]
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 11 # running the tests using an instrumentation targeting SmokeTestApp, we
  /libcore/jsr166-tests/src/test/java/jsr166/
StampedLockTest.java 285 final CountDownLatch running = new CountDownLatch(1); local
290 running.countDown();
294 running.await();
305 final CountDownLatch running = new CountDownLatch(1); local
310 running.countDown();
314 running.await();
326 final CountDownLatch running = new CountDownLatch(1); local
331 running.countDown();
335 running.await();
346 final CountDownLatch running = new CountDownLatch(1) local
433 final CountDownLatch running = new CountDownLatch(1); local
575 final CountDownLatch running = new CountDownLatch(1); local
596 final CountDownLatch running = new CountDownLatch(1); local
702 final CountDownLatch running = new CountDownLatch(1); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_thread.py 33 self.running = 0
45 self.running += 1
54 self.running -= 1
55 if self.created == NUMTASKS and self.running == 0:
186 self.running = NUMTASKS
210 self.running -= 1
214 finished = self.running == 0
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_thread.py 33 self.running = 0
45 self.running += 1
54 self.running -= 1
55 if self.created == NUMTASKS and self.running == 0:
186 self.running = NUMTASKS
210 self.running -= 1
214 finished = self.running == 0
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 33 self.running = 0
45 self.running += 1
54 self.running -= 1
55 if self.created == NUMTASKS and self.running == 0:
186 self.running = NUMTASKS
210 self.running -= 1
214 finished = self.running == 0
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 33 self.running = 0
45 self.running += 1
54 self.running -= 1
55 if self.created == NUMTASKS and self.running == 0:
186 self.running = NUMTASKS
210 self.running -= 1
214 finished = self.running == 0
  /external/libmicrohttpd/src/testcurl/
test_parse_cookies.c 121 int running; local
178 curl_multi_perform (multi, &running);
199 curl_multi_perform (multi, &running);
200 if (running == 0)
202 msg = curl_multi_info_read (multi, &running);
test_process_arguments.c 124 int running; local
177 curl_multi_perform (multi, &running);
198 curl_multi_perform (multi, &running);
199 if (running == 0)
201 msg = curl_multi_info_read (multi, &running);
  /external/libmicrohttpd/src/testzzuf/
test_get.c 197 int running; local
251 curl_multi_perform (multi, &running);
274 curl_multi_perform (multi, &running);
275 if (running == 0)
277 curl_multi_info_read (multi, &running);
test_get_chunked.c 217 int running; local
268 curl_multi_perform (multi, &running);
291 curl_multi_perform (multi, &running);
292 if (running == 0)
294 curl_multi_info_read (multi, &running);
  /external/opencv3/samples/tapi/
hog.cpp 45 bool running; member in class:App
148 running = true;
160 while (running)
194 while (running && !frame.empty())
270 running = false;
  /packages/apps/Nfc/src/com/android/nfc/echoserver/
EchoServer.java 171 boolean running = true; field in class:EchoServer.ServerThread
218 while (running) {
227 running = false;
230 running = false;
264 running = false;
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
AdvertiserService.java 29 * A global variable to let AdvertiserFragment check if the Service is running without needing
34 public static boolean running = false; field in class:AdvertiserService
58 running = true;
72 running = false;
  /developers/samples/android/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
AdvertiserService.java 29 * A global variable to let AdvertiserFragment check if the Service is running without needing
34 public static boolean running = false; field in class:AdvertiserService
58 running = true;
72 running = false;
  /development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
AdvertiserService.java 29 * A global variable to let AdvertiserFragment check if the Service is running without needing
34 public static boolean running = false; field in class:AdvertiserService
58 running = true;
72 running = false;

Completed in 575 milliseconds

1 23 4 5 6 7 8 91011>>