Home | History | Annotate | Download | only in os

Lines Matching defs:sleep

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 function
83 * very similar to {@link Thread#sleep(long) Thread.sleep(millis)}, but it
94 * recurring events which occur even when the device is in deep sleep
113 * Similar to {@link java.lang.Thread#sleep(long)}, but does not throw
118 * @param ms to sleep before returning, in milliseconds of uptime.
120 public static void sleep(long ms)
127 Thread.sleep(duration);
138 // call to Thread.sleep() or Object.wait() will be interrupted.
168 * Returns milliseconds since boot, not counting time spent in deep sleep.
170 * @return milliseconds of non-sleep uptime since boot.
185 * in deep sleep.
199 * Returns milliseconds since boot, including time spent in sleep.
208 * sleep.
222 * Returns nanoseconds since boot, including time spent in sleep.