Home | History | Annotate | Download | only in net

Lines Matching refs:networkType

230     static public boolean isNetworkTypeValid(int networkType) {
231 return networkType >= 0 && networkType <= MAX_NETWORK_TYPE;
257 public NetworkInfo getNetworkInfo(int networkType) {
259 return mService.getNetworkInfo(networkType);
283 public boolean setRadio(int networkType, boolean turnOn) {
285 return mService.setRadio(networkType, turnOn);
295 * @param networkType specifies which network the request pertains to
302 public int startUsingNetworkFeature(int networkType, String feature) {
304 return mService.startUsingNetworkFeature(networkType, feature,
315 * @param networkType specifies which network the request pertains to
322 public int stopUsingNetworkFeature(int networkType, String feature) {
324 return mService.stopUsingNetworkFeature(networkType, feature);
334 * @param networkType the type of the network over which traffic to the specified
339 public boolean requestRouteToHost(int networkType, int hostAddress) {
341 return mService.requestRouteToHost(networkType, hostAddress);
558 * @param networkType The type of network you want to report on
562 public void reportInetCondition(int networkType, int percentage) {
564 mService.reportInetCondition(networkType, percentage);