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.java125 private void sleep(long millisDelay) { method in class:MainActivity
127 Thread.sleep(millisDelay);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DTimeUnit.java321 * sleep, join.
382 * Performs a {@link Thread#sleep(long, int) Thread.sleep} using
385 * form required by the {@code Thread.sleep} method.
387 * @param timeout the minimum time to sleep. If less than
388 * or equal to zero, do not sleep at all.
391 public void sleep(long timeout) throws InterruptedException { method in class:TimeUnit
395 Thread.sleep(ms, ns);
/libcore/ojluni/src/main/java/java/lang/
H A DThread.java147 * The synchronization object responsible for this thread's join/sleep/park operations.
297 * Causes the currently executing thread to sleep (temporarily cease
303 * the length of time to sleep in milliseconds
313 public static void sleep(long millis) throws InterruptedException { method in class:Thread
314 Thread.sleep(millis, 0);
318 private static native void sleep(Object lock, long millis, int nanos) method in class:Thread
322 * Causes the currently executing thread to sleep (temporarily cease
329 * the length of time to sleep in milliseconds
332 * {@code 0-999999} additional nanoseconds to sleep
343 public static void sleep(lon method in class:Thread
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DJSR166TestCase.java229 try { MINUTES.sleep(timeoutMinutes); }
833 * Delays, via Thread.sleep, for the given millisecond delay, but
834 * if the sleep is shorter than specified, may re-sleep or yield
843 Thread.sleep(millis);
844 else // too short to sleep
1197 void sleep(long millis) { method in class:JSR166TestCase

Completed in 148 milliseconds