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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/resources/
slow-resource.php 2 sleep(10);
  /external/bluetooth/bluez/test/
ipctest-hsp-a2dp-switch.test 6 sleep 2
9 sleep 2
18 sleep 2
21 sleep 2
30 sleep 2
33 sleep 2
42 sleep 2
45 sleep 2
ipctest-a2dp-easy.test 5 sleep 2
ipctest-hsp-easy.test 5 sleep 2
ipctest-init-shutdown.test 38 sleep 1
42 sleep 1
46 sleep 1
ipctest-a2dp-resume-fast.test 9 sleep 1
37 sleep 1
46 sleep 1
  /dalvik/tests/036-finalizer/
expected.txt 7 sleep
12 sleep
  /dalvik/tests/084-class-init/
expected.txt 4 SlowInit static block pre-sleep
5 SlowInit static block post-sleep
  /external/webkit/WebCore/manual-tests/
timeout-test.php 2 sleep(610)
  /external/dbus/test/
test-sleep-forever.c 9 sleep (10000000);
  /packages/experimental/procstatlog/
diskload.sh 22 dd if=/dev/zero bs=65536 of=$1.0 & pid0=$!; echo start $pid0; sleep 2
23 dd if=/dev/zero bs=65536 of=$1.1 & pid1=$!; echo start $pid1; sleep 2
24 dd if=/dev/zero bs=65536 of=$1.2 & pid2=$!; echo start $pid2; sleep 2
25 dd if=/dev/zero bs=65536 of=$1.3 & pid3=$!; echo start $pid3; sleep 2
26 dd if=/dev/zero bs=65536 of=$1.4 & pid4=$!; echo start $pid4; sleep 2
27 dd if=/dev/zero bs=65536 of=$1.5 & pid5=$!; echo start $pid5; sleep 2
28 dd if=/dev/zero bs=65536 of=$1.6 & pid6=$!; echo start $pid6; sleep 2
29 dd if=/dev/zero bs=65536 of=$1.7 & pid7=$!; echo start $pid7; sleep 2
30 dd if=/dev/zero bs=65536 of=$1.8 & pid8=$!; echo start $pid8; sleep 2
31 dd if=/dev/zero bs=65536 of=$1.9 & pid9=$!; echo start $pid9; sleep
    [all...]
  /dalvik/tests/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);
  /dalvik/tests/002-sleep/
info.txt 1 Test that Thread.sleep() operates reasonably. This test is actually
  /development/cmds/monkey/
example_script.txt 4 sleep 1000
9 sleep 1000
14 sleep 1000
19 sleep 1000
  /cts/tests/tests/os/src/android/os/cts/
SystemClockTest.java 30 notes = "Test currentThreadTimeMillis(), the sleep() will not affect the thread",
37 Thread.sleep(100);
51 Thread.sleep(100);
73 notes = "Test sleep(long), it is similar to Thread.sleep().",
74 method = "sleep",
80 SystemClock.sleep(100);
85 SystemClock.sleep(100);
90 SystemClock.sleep(100);
104 Thread.sleep(100)
    [all...]
  /frameworks/base/core/java/android/os/
SystemClock.java 43 * sleep (CPU off, display dark, device waiting for external input),
46 * such as {@link Thread#sleep(long) Thread.sleep(millls)},
52 * device sleep. Most methods that accept a timestamp value expect the
56 * system was booted, including deep sleep. This clock should be used
57 * when measuring time intervals that may span periods of system sleep.
63 * <li> <p> Standard functions like {@link Thread#sleep(long)
64 * Thread.sleep(millis)} and {@link Object#wait(long) Object.wait(millis)}
66 * clock; if the device enters sleep, the remainder of the time will be
71 * <li> <p> {@link #sleep SystemClock.sleep(millis)} is a utility functio
107 public static void sleep(long ms) method in class:SystemClock
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
TonesAutoTest.java 44 Thread.sleep(200);
46 Thread.sleep(100);
69 Thread.sleep(2000);
71 Thread.sleep(200);
81 Thread.sleep(5000);
83 Thread.sleep(200);
105 Thread.sleep(1000);
107 Thread.sleep(100);
130 Thread.sleep(100);
132 Thread.sleep(500)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
SystemTest.java 32 Thread.sleep(1);
34 Thread.sleep(SHORT_DELAY_MS);
36 Thread.sleep(1);
52 Thread.sleep(1);
54 Thread.sleep(SHORT_DELAY_MS);
56 Thread.sleep(1);
AbstractQueuedLongSynchronizerTest.java 133 Thread.sleep(SHORT_DELAY_MS);
136 Thread.sleep(SHORT_DELAY_MS);
139 Thread.sleep(SHORT_DELAY_MS);
142 Thread.sleep(SHORT_DELAY_MS);
170 Thread.sleep(SHORT_DELAY_MS);
173 Thread.sleep(SHORT_DELAY_MS);
177 Thread.sleep(SHORT_DELAY_MS);
181 Thread.sleep(SHORT_DELAY_MS);
183 Thread.sleep(SHORT_DELAY_MS);
199 Thread.sleep(SHORT_DELAY_MS)
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
TimingLoggerTest.java 73 sleep(); method
74 timings.addSplit("fisrt sleep");
76 sleep(); method
77 timings.addSplit("second sleep");
79 sleep(); method
80 timings.addSplit("third sleep");
86 private void sleep() { method in class:TimingLoggerTest
88 Thread.sleep(SLEEPING_MSEC);
  /external/netcat/scripts/
dist.sh 10 sleep 1
17 sleep 8
19 sleep 1
21 sleep 1
  /external/stlport/stlport/stl/
_threads.c 81 // 1) Sleep(1) often takes ~15 ms
83 // 4000 is enough to avoid Sleep and is used just to prevent infinite looping
90 * Changed from Sleep(0) to Sleep(1).
91 * According to MSDN, Sleep(0) will never yield to a lower-priority thread,
92 * whereas Sleep(1) will. Performance seems not to be affected. */
93 Sleep(1);
95 Sleep(1 << (__log_nsec - 20));
109 /* Max sleep is 2**27nsec ~ 60msec */
143 // We are probably being scheduled against the other process. Sleep
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_threads.c 81 // 1) Sleep(1) often takes ~15 ms
83 // 4000 is enough to avoid Sleep and is used just to prevent infinite looping
90 * Changed from Sleep(0) to Sleep(1).
91 * According to MSDN, Sleep(0) will never yield to a lower-priority thread,
92 * whereas Sleep(1) will. Performance seems not to be affected. */
93 Sleep(1);
95 Sleep(1 << (__log_nsec - 20));
109 /* Max sleep is 2**27nsec ~ 60msec */
143 // We are probably being scheduled against the other process. Sleep
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
AlarmManagerTest.java 78 @ToBeFixed(bug = "1475410", explanation = "currently if make a device sleep android"
81 // TODO: try to find a way to make device sleep then test whether
88 Thread.sleep(SNOOZE_DELAY + TIME_DELAY);
96 Thread.sleep(SNOOZE_DELAY + TIME_DELAY);
104 Thread.sleep(SNOOZE_DELAY + TIME_DELAY);
112 Thread.sleep(SNOOZE_DELAY + TIME_DELAY);
122 @ToBeFixed(bug = "1475410", explanation = "currently if make a device sleep android"
131 Thread.sleep(TIME_DELAY);
140 @ToBeFixed(bug = "1475410", explanation = "currently if make a device sleep android"
146 Thread.sleep(SNOOZE_DELAY + TIME_DELAY)
    [all...]
  /dalvik/tests/084-class-init/src/
Main.java 23 public static void sleep(int msec) { method in class:Main
25 Thread.sleep(msec);
27 System.err.println("sleep interrupted");
64 Main.sleep(500);
75 Main.sleep(200);
87 Main.sleep(400);

Completed in 374 milliseconds

1 2 3 4 5 6 7 8 91011>>