Searched defs:turnOn (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java104 public boolean setRadio(boolean turnOn) { argument
H A DNetworkStateTracker.java132 * @param turnOn {@code true} to turn the radio on, {@code false}
134 public boolean setRadio(boolean turnOn); argument
H A DDummyDataStateTracker.java166 * @param turnOn {@code true} if the radio should be turned on, {@code false} if
168 public boolean setRadio(boolean turnOn) { argument
H A DEthernetDataTracker.java284 * @param turnOn {@code true} to turn the radio on, {@code false}
286 public boolean setRadio(boolean turnOn) { argument
H A DMobileDataStateTracker.java457 * @param turnOn {@code true} if the radio should be turned on, {@code false} if
459 public boolean setRadio(boolean turnOn) { argument
472 return mPhoneService.setRadio(turnOn);
478 loge("Could not set radio power to " + (turnOn ? "on" : "off"));
H A DConnectivityManager.java475 public boolean setRadios(boolean turnOn) { argument
477 return mService.setRadios(turnOn);
484 public boolean setRadio(int networkType, boolean turnOn) { argument
486 return mService.setRadio(networkType, turnOn);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothTetheringDataTracker.java154 * @param turnOn {@code true} to turn the radio on, {@code false}
156 public boolean setRadio(boolean turnOn) { argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateTracker.java124 * @param turnOn {@code true} to turn the radio on, {@code false}
126 public boolean setRadio(boolean turnOn) { argument
127 mWifiManager.setWifiEnabled(turnOn);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java975 public boolean setRadios(boolean turnOn) { argument
979 if (t != null) result = t.setRadio(turnOn) && result;
984 public boolean setRadio(int netType, boolean turnOn) { argument
990 return tracker != null && tracker.setRadio(turnOn);

Completed in 317 milliseconds