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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/sys/
sleep.c 2 * sys/sleep.c
19 unsigned int sleep(unsigned int seconds) function
  /external/syslinux/gpxe/src/core/
timer.c 38 unsigned int sleep ( unsigned int secs ) { function
  /external/curl/tests/server/
util.h 44 #define sleep(sec) Sleep ((sec)*1000) macro
  /external/tensorflow/tensorflow/core/platform/cloud/
retrying_utils_test.cc 27 std::function<void(int64)> sleep = [&requested_delays](int64 delay) { local
32 const auto& status = RetryingUtils::CallWithRetries(f, 500000L, sleep);
69 std::function<void(int64)> sleep = [](int64 delay) { local
70 ADD_FAILURE() << "Unexpected call to sleep.";
77 TF_EXPECT_OK(RetryingUtils::CallWithRetries(f, 1.0, sleep));
  /external/compiler-rt/test/tsan/
cond_version.c 22 u64 sleep; local
40 sleep = (u64)ts2.tv_sec * 1000000000 + ts2.tv_nsec -
44 if (sleep < 1000000000)
45 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
  /external/eigen/unsupported/test/
cxx11_tensor_notification.cpp 18 void sleep(int seconds) { function
19 Sleep(seconds*1000);
43 sleep(1);
51 sleep(1);
70 sleep(1);
73 sleep(1);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSystemClockTest.java 24 public void sleep() { method in class:ShadowSystemClockTest
26 SystemClock.sleep(34);
  /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/DefaultMethods/
Reflection.java 64 * Return string representation of the sleep action for Animal
66 * @return string representation of the sleep action for Animal
68 default String sleep() { method in interface:Reflection.Animal
84 * <li> the {@link #go} and {@link #sleep} methods are not default.
85 * {@link #go} is not the default implementation and the {@link #sleep}
106 * Return string representation of the sleep action for Dog
108 * @return string representation of the sleep action for Dog
111 public String sleep() { method in class:Reflection.Dog
124 Stream.of(Dog.class.getMethod("eat"), Dog.class.getMethod("go"), Dog.class.getMethod("sleep"))
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/DefaultMethods/
Reflection.java 64 * Return string representation of the sleep action for Animal
66 * @return string representation of the sleep action for Animal
68 default String sleep() { method in interface:Reflection.Animal
84 * <li> the {@link #go} and {@link #sleep} methods are not default.
85 * {@link #go} is not the default implementation and the {@link #sleep}
106 * Return string representation of the sleep action for Dog
108 * @return string representation of the sleep action for Dog
111 public String sleep() { method in class:Reflection.Dog
124 Stream.of(Dog.class.getMethod("eat"), Dog.class.getMethod("go"), Dog.class.getMethod("sleep"))
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
DelaySensorOperation.java 52 SensorCtsHelper.sleep(mDelay, mTimeUnit);
  /cts/tests/tests/util/src/android/util/cts/
TimingLoggerTest.java 43 sleep(); method
44 timings.addSplit("first sleep");
46 sleep(); method
47 timings.addSplit("second sleep");
49 sleep(); method
50 timings.addSplit("third sleep");
56 private void sleep() { method in class:TimingLoggerTest
58 Thread.sleep(SLEEPING_MSEC);
  /external/valgrind/memcheck/tests/solaris/
thr_daemon_exit_standalone.c 45 static void sleep(unsigned int sec) { function
142 sleep(10000);
234 sleep(5);
  /external/vogar/test/vogar/target/junit3/
LongTest2.java 30 private void sleep() { method in class:LongTest2
32 Thread.sleep(1000 / 4);
38 sleep(); method
42 sleep(); method
46 sleep(); method
50 sleep(); method
54 sleep(); method
58 sleep(); method
62 sleep(); method
66 sleep(); method
    [all...]
  /external/vogar/test/vogar/target/junit4/
LongTest2.java 23 private void sleep() { method in class:LongTest2
25 Thread.sleep(1000 / 4);
32 sleep(); method
37 sleep(); method
42 sleep(); method
47 sleep(); method
52 sleep(); method
57 sleep(); method
62 sleep(); method
67 sleep(); method
    [all...]
  /frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCase.java 97 * Calls {@link SystemClock#sleep(long)} to sleep
101 public void sleep(long ms) { method in class:UiAutomatorTestCase
102 SystemClock.sleep(ms);
  /frameworks/base/core/java/android/os/
SystemClock.java 53 * sleep (CPU off, display dark, device waiting for external input),
56 * such as {@link Thread#sleep(long) Thread.sleep(millls)},
60 * interval does not span device sleep. Most methods that accept a
64 * return the time since the system was booted, and include deep sleep.
74 * <li> <p> Standard functions like {@link Thread#sleep(long)
75 * Thread.sleep(millis)} and {@link Object#wait(long) Object.wait(millis)}
77 * clock; if the device enters sleep, the remainder of the time will be
82 * <li> <p> {@link #sleep SystemClock.sleep(millis)} is a utility functio
120 public static void sleep(long ms) method in class:SystemClock
    [all...]
  /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/apps/TV/common/src/com/android/tv/common/util/
Clock.java 33 * Returns milliseconds since boot, including time spent in sleep.
40 * Returns milliseconds since boot, not counting time spent in deep sleep.
42 * @return milliseconds of non-sleep uptime since boot.
50 * @param ms to sleep before returning, in milliseconds of uptime.
51 * @see SystemClock#sleep(long)
53 void sleep(long ms); method in interface:Clock
69 public void sleep(long ms) {
70 SystemClock.sleep(ms);
  /packages/providers/ContactsProvider/test_common/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.15-4.8/sysroot/usr/include/X11/
Xwindows.h 79 #define sleep(x) Sleep((x) * 1000) macro
  /prebuilts/go/darwin-x86/src/net/http/pprof/
pprof.go 87 func sleep(w http.ResponseWriter, d time.Duration) { func
132 sleep(w, time.Duration(sec)*time.Second)
165 sleep(w, time.Duration(sec*float64(time.Second)))
  /prebuilts/go/darwin-x86/test/chan/
nonblock.go 64 func sleep() { func
125 sleep()
146 sleep()
168 sleep()
188 sleep()
210 sleep()
230 sleep()
252 sleep()
272 sleep()
  /prebuilts/go/linux-x86/src/net/http/pprof/
pprof.go 87 func sleep(w http.ResponseWriter, d time.Duration) { func
132 sleep(w, time.Duration(sec)*time.Second)
165 sleep(w, time.Duration(sec*float64(time.Second)))

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 91011>>