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

/frameworks/base/core/java/android/os/
H A DSystemClock.java43 * 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 SystemCloc
107 public static void sleep(long ms) method in class:SystemClock
[all...]
/frameworks/base/packages/VpnServices/src/com/android/server/vpn/
H A DDaemonProxy.java149 sleep(500);
180 sleep(sleepTime);
192 private void sleep(int msec) { method in class:DaemonProxy
194 Thread.currentThread().sleep(msec);
H A DVpnService.java187 sleep(2000); // 2 seconds
202 sleep(500); // 0.5 second
408 protected void sleep(int ms) { method in class:VpnService
410 Thread.currentThread().sleep(ms);
/frameworks/base/core/tests/coretests/src/android/bluetooth/
H A DBluetoothTestUtils.java222 sleep(POLL_TIME);
271 sleep(POLL_TIME);
309 sleep(POLL_TIME);
348 sleep(POLL_TIME);
380 sleep(POLL_TIME);
412 sleep(POLL_TIME);
435 private void sleep(long time) { method in class:BluetoothTestUtils
437 Thread.sleep(time);
/frameworks/base/services/java/com/android/server/
H A DWifiWatchdogService.java384 Thread.sleep(pingDelay);
408 Thread.sleep(pingDelay);
696 + "), going to sleep for " + mSsid);
698 mHandler.sleep(mSsid);
844 * Handles going to sleep for this network. Going to sleep means we will not
850 // Make sure the network we're trying to sleep in is still the current network
855 myLogD("Going to sleep for " + ssid);
859 * Before deciding to go to sleep, we may have checked a few APs
881 * duration in between). For example, if the watchdog went to sleep i
1043 void sleep(String ssid) { method in class:WifiWatchdogService.WifiWatchdogHandler
[all...]

Completed in 191 milliseconds