HomeSort by relevance Sort by last modified time
    Searched defs:sleep (Results 26 - 50 of 184) sorted by null

12 3 4 5 6 7 8

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Power_Suite.py 55 def sleep(self, _object, _attributes={}, **_arguments): member in class:Power_Suite_Events
56 """sleep: Put the computer to sleep
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 257 * sleep, join.
318 * Performs a {@link Thread#sleep(long, int) Thread.sleep} using
321 * form required by the {@code Thread.sleep} method.
323 * @param timeout the minimum time to sleep. If less than
324 * or equal to zero, do not sleep at all.
327 public void sleep(long timeout) throws InterruptedException { method in class:TimeUnit
331 Thread.sleep(ms, ns);
  /art/test/109-suspend-check/src/
Main.java 33 sleep(1000);
42 public static void sleep(int ms) { method in class:Main
44 Thread.sleep(ms);
46 System.err.println("sleep was interrupted");
  /cts/tests/tests/os/src/android/os/cts/
HandlerThreadTest.java 39 sleep(SLEEPTIME);
53 private void sleep(long sleepTime) { method in class:HandlerThreadTest
55 Thread.sleep(sleepTime);
  /dalvik/tests/097-suspend-check/src/
Main.java 33 sleep(1000);
42 public static void sleep(int ms) { method in class:Main
44 Thread.sleep(ms);
46 System.err.println("sleep was interrupted");
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 57 public void sleep(long delayMillis) { method in class:PurgeableBitmap.RefreshHandler
67 mRedrawHandler.sleep(0);
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestTouchUtils.java 91 SystemClock.sleep((long) (ViewConfiguration.getDoubleTapTimeout() * 1.5));
109 SystemClock.sleep((long) (ViewConfiguration.getLongPressTimeout() * 1.5));
  /external/chromium_org/media/filters/
video_renderer_impl.cc 268 // No need to sleep here as we idle when |state_ != kPlaying|.
279 // Sleep up to a maximum of our idle time until we're within the time to
511 // Scale our sleep based on the playback rate.
512 base::TimeDelta sleep = next_pts - now; local
514 static_cast<int64>(sleep.InMicroseconds() / playback_rate));
  /external/chromium_org/third_party/protobuf/python/
ez_setup.py 161 ); from time import sleep; sleep(delay) namespace
  /external/chromium_org/tools/site_compare/commands/
maskmaker.py 15 import time # Used for sleep() and naming masks by time namespace
257 time.sleep(command["--wait"])
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
ExecutionUtils.java 36 // Sleep
42 public static void sleep(final int millis) { method in class:ExecutionUtils
46 Thread.sleep(millis);
54 * as {@link #sleep(int)}.
62 sleep(0);
68 sleep(millis);
  /external/grub/netboot/
misc.c 26 sleep (int secs) function
  /external/netperf/
netserver.c 105 #define sleep(x) Sleep((x)*1000) macro
479 sleep(1);
  /external/protobuf/python/
ez_setup.py 153 ); from time import sleep; sleep(delay) namespace
  /external/valgrind/main/gdbserver_tests/
sleepers.c 13 static int sleepms = 1000; // in each loop, will sleep "sleepms" milliseconds
14 static int burn = 0; // after each sleep, will burn cpu in a tight 'burn' loop
62 int sleep; member in struct:spec
75 fprintf(stderr, "%s ready to sleep and/or burn\n", s->name);
81 if (sleepms > 0 && s->sleep) {
90 fprintf(stderr, "%s finished to sleep and/or burn\n", s->name);
157 b.sleep = *threads_spec++ == 'S';
159 if (b.burn || b.sleep) {
167 l.sleep = *threads_spec++ == 'S';
169 if (l.burn || l.sleep) {
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 72 sleep(2 * SHORT_TIMEOUT, "interrupted while waiting for WPA_SUPPLICANT to start");
111 private void sleep(long sometime, String errorMsg) { method in class:WifiAssociationTest
113 Thread.sleep(sometime);
WifiConnectionTest.java 58 sleep(2 * SHORT_TIMEOUT, "interrupted while waiting for WPA_SUPPLICANT to start");
102 private void sleep(long sometime, String errorMsg) { method in class:WifiConnectionTest
104 Thread.sleep(sometime);
121 sleep(WIFI_STOP_START_INTERVAL, "interruped while connected to wifi"); method
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCase.java 116 * Calls {@link SystemClock#sleep(long)} to sleep
120 public void sleep(long ms) { method in class:UiAutomatorTestCase
121 SystemClock.sleep(ms);
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
JPEGTestEnc.h 100 #define sleep Sleep macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Legacy_suite.py 53 def sleep(self, _no_object=None, _attributes={}, **_arguments): member in class:Legacy_suite_Events
54 """sleep: Put the computer to sleep
  /system/core/fastboot/
usb_windows.c 376 void sleep(int seconds) function
378 Sleep(seconds * 1000);
  /libcore/libdvm/src/main/java/java/lang/
Thread.java 641 * or one of {@code Thread}'s {@code join()} or {@code sleep()} methods will
994 public static void sleep(long time) throws InterruptedException { method in class:Thread
1012 public static void sleep(long millis, int nanos) throws InterruptedException { method in class:Thread
    [all...]
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
BasicAdapterTest.java 226 sleep(CHECK_WAIT_TIME);
237 sleep(POLL_TIME);
259 sleep(CHECK_WAIT_TIME);
270 sleep(POLL_TIME);
287 private static void sleep(long t) { method in class:BasicAdapterTest
289 Thread.sleep(t);
  /cts/tests/tests/view/src/android/view/cts/
ChoreographerTest.java 56 // Sleep for a couple of frames.
57 sleep(NOMINAL_VSYNC_PERIOD * 3);
67 sleep(NOMINAL_VSYNC_PERIOD * 3);
80 sleep(NOMINAL_VSYNC_PERIOD * 3);
92 sleep(NOMINAL_VSYNC_PERIOD * 3);
117 // Sleep for a couple of frames.
118 sleep(NOMINAL_VSYNC_PERIOD * 3);
124 // Sleep for the rest of the delay time.
125 sleep(DELAY_PERIOD);
138 sleep(NOMINAL_VSYNC_PERIOD * 3 + DELAY_PERIOD)
289 private void sleep(long time) { method in class:ChoreographerTest
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_util.cc 210 // Sleep(delay_before_delete_ms);
225 PAPCFUNC sleep = reinterpret_cast<PAPCFUNC>( local
226 ::GetProcAddress(kernel32, "Sleep"));
231 if (!sleep || !delete_file || !exit_process) {
235 ::QueueUserAPC(sleep, pi.hThread, delay_before_delete_ms);

Completed in 2337 milliseconds

12 3 4 5 6 7 8