Searched refs:hostAddress (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl48 boolean requestRouteToHost(int networkType, int hostAddress);
H A DConnectivityManager.java336 * @param hostAddress the IP address of the host to which the route is desired
339 public boolean requestRouteToHost(int networkType, int hostAddress) { argument
341 return mService.requestRouteToHost(networkType, hostAddress);
H A DMobileDataStateTracker.java497 * @param hostAddress the IP address of the host to which the route is desired,
502 public boolean requestRouteToHost(int hostAddress) { argument
504 Log.d(TAG, "Requested host route to " + Integer.toHexString(hostAddress) +
507 if (mInterfaceName != null && hostAddress != -1) {
508 return NetworkUtils.addHostRoute(mInterfaceName, hostAddress) == 0;
H A DNetworkStateTracker.java400 * @param hostAddress the IP address of the host to which the route is desired
403 public boolean requestRouteToHost(int hostAddress) { argument
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java908 * @param hostAddress the IP address of the host to which the route is
912 public boolean requestRouteToHost(int networkType, int hostAddress) { argument
926 return tracker.requestRouteToHost(hostAddress);

Completed in 297 milliseconds