HomeSort by relevance Sort by last modified time
    Searched defs:sleep (Results 1 - 25 of 210) sorted by null

1 2 3 4 5 6 7 8 9

  /external/compiler-rt/test/tsan/
cond_version.c 19 u64 sleep; local
37 sleep = (u64)ts2.tv_sec * 1000000000 + ts2.tv_nsec -
41 if (sleep < 1000000000)
42 exit(printf("bad sleep duration %lluns, want %dns\n", sleep, 1000000000));
  /external/droiddriver/src/io/appium/droiddriver/
UiDevice.java 35 /** Puts device to sleep if the screen is on */
36 void sleep(); method in interface:UiDevice
  /art/test/079-phantom/src/
Main.java 20 public static void sleep(int ms) { method in class:Main
22 Thread.sleep(ms);
24 System.err.println("sleep interrupted");
34 sleep(1000);
42 sleep(250);
49 sleep(500);
54 sleep(500);
59 sleep(500);
64 sleep(500);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
DelaySensorOperation.java 52 SensorCtsHelper.sleep(mDelay, mTimeUnit);
  /cts/tests/tests/util/src/android/util/cts/
TimingLoggerTest.java 36 sleep(); method
37 timings.addSplit("fisrt sleep");
39 sleep(); method
40 timings.addSplit("second sleep");
42 sleep(); method
43 timings.addSplit("third sleep");
49 private void sleep() { method in class:TimingLoggerTest
51 Thread.sleep(SLEEPING_MSEC);
  /external/mockito/src/org/mockito/internal/verification/
VerificationWithTimeoutImpl.java 33 sleep(treshhold);
41 void sleep(int sleep) { method in class:VerificationWithTimeoutImpl
43 Thread.sleep(sleep);
  /external/vogar/test/vogar/target/junit3/
LongTest2.java 26 private void sleep() { method in class:LongTest2
28 Thread.sleep(1 * 1000 / 4);
34 sleep(); method
38 sleep(); method
42 sleep(); method
46 sleep(); method
50 sleep(); method
54 sleep(); method
58 sleep(); method
62 sleep(); method
    [all...]
  /frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCase.java 94 * Calls {@link SystemClock#sleep(long)} to sleep
98 public void sleep(long ms) { method in class:UiAutomatorTestCase
99 SystemClock.sleep(ms);
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
SoftVsyncObserver.cpp 128 nsecs_t sleep = next_vsync - now; local
129 if (sleep < 0) {
131 sleep = (period - ((now - next_vsync) % period));
132 next_vsync = now + sleep;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/observers/
SoftVsyncObserver.cpp 124 nsecs_t sleep = next_vsync - now; local
125 if (sleep < 0) {
127 sleep = (period - ((now - next_vsync) % period));
128 next_vsync = now + sleep;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
TestUtil.java 34 * Sleep for 1ms.
36 public static void sleep() { method in class:TestUtil
38 Thread.sleep(1);
40 Log.w(TAG, "Sleep interrupted.");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xwindows.h 79 #define sleep(x) Sleep((x) * 1000) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xwindows.h 79 #define sleep(x) Sleep((x) * 1000) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
unistd.h 32 #pragma push_macro("sleep")
33 #undef sleep macro
34 unsigned int __cdecl sleep (unsigned int);
35 #pragma pop_macro("sleep")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_startfile.py 14 from time import sleep namespace
33 sleep(0.1)
39 sleep(0.1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_startfile.py 14 from time import sleep namespace
33 sleep(0.1)
39 sleep(0.1)
  /cts/tests/tests/os/src/android/os/cts/
VibratorTest.java 40 sleep(); method
60 sleep(); method
88 sleep(); method
91 private void sleep() { method in class:VibratorTest
93 Thread.sleep(10000);
  /external/droiddriver/src/io/appium/droiddriver/actions/
ClickAction.java 60 SystemClock.sleep((long) (ViewConfiguration.getLongPressTimeout() * 1.5));
76 // android.test.TouchUtils#clickView sleep 1000
77 SystemClock.sleep(CLICK_DURATION_MILLIS);
  /frameworks/base/core/java/android/os/
SystemClock.java 46 * sleep (CPU off, display dark, device waiting for external input),
49 * such as {@link Thread#sleep(long) Thread.sleep(millls)},
53 * interval does not span device sleep. Most methods that accept a
57 * return the time since the system was booted, and include deep sleep.
67 * <li> <p> Standard functions like {@link Thread#sleep(long)
68 * Thread.sleep(millis)} and {@link Object#wait(long) Object.wait(millis)}
70 * clock; if the device enters sleep, the remainder of the time will be
75 * <li> <p> {@link #sleep SystemClock.sleep(millis)} is a utility functio
113 public static void sleep(long ms) method in class:SystemClock
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
KeyUtils.java 82 Thread.sleep((long)(ViewConfiguration.getLongPressTimeout() * 1.5f));
  /external/antlr/antlr-3.4/runtime/Python/
ez_setup.py 135 ); from time import sleep; sleep(delay) namespace
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseUiDevice.java 62 public void sleep() { method in class:BaseUiDevice
  /external/e2fsprogs/include/nonunix/
unistd.h 17 #define sleep _sleep macro
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServicesTests/src/com/android/framework/multidexlegacytestservices/test/
ServicesTests.java 52 Thread.sleep((i - 1) * (1 << (i / 5)));
63 Thread.sleep(5000);
  /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

Completed in 973 milliseconds

1 2 3 4 5 6 7 8 9