Searched defs:WifiLock (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java1214 * of WifiLock & device idle status unless wifi enabled status is toggled
1532 private class WifiLock extends DeathRecipient { class in class:WifiServiceImpl
1533 WifiLock(int lockMode, String tag, IBinder binder, WorkSource ws) { method in class:WifiServiceImpl.WifiLock
1544 return "WifiLock{" + mTag + " type=" + mMode + " binder=" + mBinder + "}";
1549 private List<WifiLock> mList;
1552 mList = new ArrayList<WifiLock>();
1581 private void addLock(WifiLock lock) {
1587 private WifiLock removeLock(IBinder binder) {
1590 WifiLock ret = mList.remove(index);
1608 for (WifiLock
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1616 * This function will over-ride WifiLock and device idle status. For example,
1638 * This function will over-ride WifiLock and device idle status. Wi-Fi
2303 * Acquiring a WifiLock will keep the radio on until the lock is released. Multiple
2307 * Before using a WifiLock, consider carefully if your application requires Wi-Fi access, or
2309 * files should hold a WifiLock to ensure that the download will complete, but a program whose
2310 * network usage is occasional or low-bandwidth should not hold a WifiLock to avoid adversely
2317 * Any application using a WifiLock must request the {@code android.permission.WAKE_LOCK}
2320 public class WifiLock { class in class:WifiManager
2329 private WifiLock(int lockType, String tag) { method in class:WifiManager.WifiLock
2341 * If this WifiLock i
[all...]

Completed in 2803 milliseconds