Loading core/java/android/net/ConnectivityManager.java +10 −6 Original line number Diff line number Diff line Loading @@ -2441,17 +2441,21 @@ public class ConnectivityManager { } /** * Request connectivityservice to refresh network capabilities for the given * {@link network}. This method returns true if the network is still active, false * otherwise. Notice the method call assumes the caller has registered for * listening NetworkCapabilities updates. * Requests bandwidth update for a given {@link Network} and returns whether the update request * is accepted by ConnectivityService. Once accepted, ConnectivityService will poll underlying * network connection for updated bandwidth information. The caller will be notified via * {@link ConnectivityManager.NetworkCallback} if there is an update. Notice that this * method assumes that the caller has previously called {@link #registerNetworkCallback} to * listen for network changes. * * @param network{@link Network} specifying which network you're interested. * @return {@code true} on success, {@code false} if the {@link Network} is no longer valid. * * @hide */ public boolean requestBwUpdate(Network network) { public boolean requestBandwidthUpdate(Network network) { try { return mService.requestBwUpdate(network); return mService.requestBandwidthUpdate(network); } catch (RemoteException e) { return false; } Loading core/java/android/net/IConnectivityManager.aidl +1 −1 Original line number Diff line number Diff line Loading @@ -134,7 +134,7 @@ interface IConnectivityManager void registerNetworkFactory(in Messenger messenger, in String name); boolean requestBwUpdate(in Network network); boolean requestBandwidthUpdate(in Network network); void unregisterNetworkFactory(in Messenger messenger); Loading services/core/java/com/android/server/ConnectivityService.java +1 −1 Original line number Diff line number Diff line Loading @@ -3454,7 +3454,7 @@ public class ConnectivityService extends IConnectivityManager.Stub } @Override public boolean requestBwUpdate(Network network) { public boolean requestBandwidthUpdate(Network network) { enforceAccessPermission(); NetworkAgentInfo nai = null; if (network == null) { Loading Loading
core/java/android/net/ConnectivityManager.java +10 −6 Original line number Diff line number Diff line Loading @@ -2441,17 +2441,21 @@ public class ConnectivityManager { } /** * Request connectivityservice to refresh network capabilities for the given * {@link network}. This method returns true if the network is still active, false * otherwise. Notice the method call assumes the caller has registered for * listening NetworkCapabilities updates. * Requests bandwidth update for a given {@link Network} and returns whether the update request * is accepted by ConnectivityService. Once accepted, ConnectivityService will poll underlying * network connection for updated bandwidth information. The caller will be notified via * {@link ConnectivityManager.NetworkCallback} if there is an update. Notice that this * method assumes that the caller has previously called {@link #registerNetworkCallback} to * listen for network changes. * * @param network{@link Network} specifying which network you're interested. * @return {@code true} on success, {@code false} if the {@link Network} is no longer valid. * * @hide */ public boolean requestBwUpdate(Network network) { public boolean requestBandwidthUpdate(Network network) { try { return mService.requestBwUpdate(network); return mService.requestBandwidthUpdate(network); } catch (RemoteException e) { return false; } Loading
core/java/android/net/IConnectivityManager.aidl +1 −1 Original line number Diff line number Diff line Loading @@ -134,7 +134,7 @@ interface IConnectivityManager void registerNetworkFactory(in Messenger messenger, in String name); boolean requestBwUpdate(in Network network); boolean requestBandwidthUpdate(in Network network); void unregisterNetworkFactory(in Messenger messenger); Loading
services/core/java/com/android/server/ConnectivityService.java +1 −1 Original line number Diff line number Diff line Loading @@ -3454,7 +3454,7 @@ public class ConnectivityService extends IConnectivityManager.Stub } @Override public boolean requestBwUpdate(Network network) { public boolean requestBandwidthUpdate(Network network) { enforceAccessPermission(); NetworkAgentInfo nai = null; if (network == null) { Loading