Searched defs:sleep (Results 1 - 4 of 4) sorted by relevance

/libcore/tzdata/update_test_app/src/libcore/tzdata/update_test_app/installupdatetestapp/
H A DMainActivity.java117 private void sleep(long millisDelay) { method in class:MainActivity
119 Thread.sleep(millisDelay);
/libcore/luni/src/main/java/java/util/concurrent/
H A DTimeUnit.java286 * sleep, join.
347 * Performs a {@link Thread#sleep(long, int) Thread.sleep} using
350 * form required by the {@code Thread.sleep} method.
352 * @param timeout the minimum time to sleep. If less than
353 * or equal to zero, do not sleep at all.
356 public void sleep(long timeout) throws InterruptedException { method in class:TimeUnit
360 Thread.sleep(ms, ns);
/libcore/libart/src/main/java/java/lang/
H A DThread.java183 * The synchronization object responsible for this thread's join/sleep/park operations.
631 * or one of {@code Thread}'s {@code join()} or {@code sleep()} methods will
973 * Causes the thread which sent this message to sleep for the given interval
975 * Thread may sleep more or less than requested.
978 * The time to sleep in milliseconds.
984 public static void sleep(long time) throws InterruptedException { method in class:Thread
985 Thread.sleep(time, 0);
989 * Causes the thread which sent this message to sleep for the given interval
991 * guaranteed - the Thread may sleep more or less than requested.
994 * The time to sleep i
1002 public static void sleep(long millis, int nanos) throws InterruptedException { method in class:Thread
1048 private static native void sleep(Object lock, long millis, int nanos); method in class:Thread
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DJSR166TestCase.java380 * Delays, via Thread.sleep, for the given millisecond delay, but
381 * if the sleep is shorter than specified, may re-sleep or yield
389 Thread.sleep(millis);
390 else // too short to sleep
610 void sleep(long millis) { method in class:JSR166TestCase

Completed in 400 milliseconds