Loading wifi/java/android/net/wifi/IWifiManager.aidl +0 −6 Original line number Diff line number Diff line Loading @@ -133,14 +133,8 @@ interface IWifiManager void setWifiApConfiguration(in WifiConfiguration wifiConfig); void addToBlacklist(String bssid); void clearBlacklist(); Messenger getWifiServiceMessenger(); String getConfigFile(); void enableTdls(String remoteIPAddress, boolean enable); void enableTdlsWithMacAddress(String remoteMacAddress, boolean enable); Loading wifi/java/android/net/wifi/WifiManager.java +0 −47 Original line number Diff line number Diff line Loading @@ -1617,41 +1617,6 @@ public class WifiManager { } } /** * Add a bssid to the supplicant blacklist * * This API is used by WifiWatchdogService * * @return {@code true} if the operation succeeds else {@code false} * @hide */ public boolean addToBlacklist(String bssid) { try { mService.addToBlacklist(bssid); return true; } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } /** * Clear the supplicant blacklist * * This API is used by WifiWatchdogService * * @return {@code true} if the operation succeeds else {@code false} * @hide */ public boolean clearBlacklist() { try { mService.clearBlacklist(); return true; } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } /** * Enable/Disable TDLS on a specific local route. * Loading Loading @@ -2149,18 +2114,6 @@ public class WifiManager { } /** * Returns the file in which IP and proxy configuration data is stored * @hide */ public String getConfigFile() { try { return mService.getConfigFile(); } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } /** * Allows an application to keep the Wi-Fi radio awake. * Normally the Wi-Fi radio may turn off when the user has not used the device in a while. Loading Loading
wifi/java/android/net/wifi/IWifiManager.aidl +0 −6 Original line number Diff line number Diff line Loading @@ -133,14 +133,8 @@ interface IWifiManager void setWifiApConfiguration(in WifiConfiguration wifiConfig); void addToBlacklist(String bssid); void clearBlacklist(); Messenger getWifiServiceMessenger(); String getConfigFile(); void enableTdls(String remoteIPAddress, boolean enable); void enableTdlsWithMacAddress(String remoteMacAddress, boolean enable); Loading
wifi/java/android/net/wifi/WifiManager.java +0 −47 Original line number Diff line number Diff line Loading @@ -1617,41 +1617,6 @@ public class WifiManager { } } /** * Add a bssid to the supplicant blacklist * * This API is used by WifiWatchdogService * * @return {@code true} if the operation succeeds else {@code false} * @hide */ public boolean addToBlacklist(String bssid) { try { mService.addToBlacklist(bssid); return true; } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } /** * Clear the supplicant blacklist * * This API is used by WifiWatchdogService * * @return {@code true} if the operation succeeds else {@code false} * @hide */ public boolean clearBlacklist() { try { mService.clearBlacklist(); return true; } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } /** * Enable/Disable TDLS on a specific local route. * Loading Loading @@ -2149,18 +2114,6 @@ public class WifiManager { } /** * Returns the file in which IP and proxy configuration data is stored * @hide */ public String getConfigFile() { try { return mService.getConfigFile(); } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } /** * Allows an application to keep the Wi-Fi radio awake. * Normally the Wi-Fi radio may turn off when the user has not used the device in a while. Loading