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

/frameworks/base/core/java/android/os/
H A DSystemClock.java46 * sleep (CPU off, display dark, device waiting for external input),
49 * such as {@link Thread#sleep(long) Thread.sleep(millls)},
53 * interval does not span device sleep. Most methods that accept a
57 * return the time since the system was booted, and include deep sleep.
67 * <li> <p> Standard functions like {@link Thread#sleep(long)
68 * Thread.sleep(millis)} and {@link Object#wait(long) Object.wait(millis)}
70 * clock; if the device enters sleep, the remainder of the time will be
75 * <li> <p> {@link #sleep SystemClock.sleep(milli
113 public static void sleep(long ms) method in class:SystemClock
[all...]
/frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestCase.java94 * Calls {@link SystemClock#sleep(long)} to sleep
98 public void sleep(long ms) { method in class:UiAutomatorTestCase
99 SystemClock.sleep(ms);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
H A DWifiStressTest.java46 * Stress Wi-Fi connection, scanning and reconnection after sleep.
55 * Wi-Fi idle time for default sleep policy
104 sleep(SHORT_TIMEOUT, "Interruped while waiting for wifi on");
131 private void sleep(long sometime, String errorMsg) { method in class:WifiStressTest
133 Thread.sleep(sometime);
194 // Stress Wifi reconnection to secure net after sleep
200 // set wifi sleep policy to never on while in sleep
223 // 1. Put device into sleep mode
224 // 2. Wait for the device to sleep fo
[all...]
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothStressTest.java35 /** The amount of time to sleep between issuing start/stop SCO in ms. */
385 sleep(SCO_SLEEP_TIME);
387 sleep(SCO_SLEEP_TIME);
395 private void sleep(long time) { method in class:BluetoothStressTest
397 Thread.sleep(time);
H A DBluetoothTestUtils.java469 sleep(POLL_TIME);
529 sleep(POLL_TIME);
571 sleep(POLL_TIME);
614 sleep(POLL_TIME);
653 sleep(POLL_TIME);
691 sleep(POLL_TIME);
826 sleep(POLL_TIME);
979 sleep(POLL_TIME);
1060 sleep(POLL_TIME);
1165 sleep(POLL_TIM
1504 private void sleep(long time) { method in class:BluetoothTestUtils
[all...]
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestCase.java116 * Calls {@link SystemClock#sleep(long)} to sleep
120 public void sleep(long ms) { method in class:UiAutomatorTestCase
121 SystemClock.sleep(ms);
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
H A DAppLaunch.java109 sleep(INITIAL_LAUNCH_IDLE_TIMEOUT);
111 sleep(BETWEEN_LAUNCH_SLEEP_TIMEOUT);
132 sleep(POST_LAUNCH_IDLE_TIMEOUT);
134 sleep(BETWEEN_LAUNCH_SLEEP_TIMEOUT);
276 sleep(POST_LAUNCH_IDLE_TIMEOUT);
290 private void sleep(int time) { method in class:AppLaunch
292 Thread.sleep(time);
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageTest.java207 sleep(3000);
216 sleep(SLEEP_TIME);
255 private void sleep(int time) { method in class:MemoryUsageTest
257 Thread.sleep(time);
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java131 sleep(SHORT_TIMEOUT);
663 sleep(SHORT_TIMEOUT);
667 sleep(SHORT_TIMEOUT);
672 * Make the current thread sleep.
673 * @param sleeptime the time to sleep in milliseconds
675 private void sleep(long sleeptime) { method in class:ConnectionUtil
677 Thread.sleep(sleeptime);
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiDevice.java725 SystemClock.sleep(500);
748 public void sleep() throws RemoteException { method in class:UiDevice
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DStateMachineTest.java57 private void sleep(int millis) { method in class:StateMachineTest
59 Thread.sleep(millis);
121 sleep(500);
224 sleep(500);
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java91 // waken up from sleep and there are many packets to be processed in the SIP
566 sleep(timeout);
583 private synchronized void sleep(int timeout) { method in class:SipSessionGroup.SipSessionImpl.SessionTimer

Completed in 7118 milliseconds