Searched defs:tether (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/
H A DConnectivityManager.java267 * gives a String[] listing all the interfaces we tried to tether and
1456 * Get the set of interface names which attempted to tether but
1457 * failed. Re-attempting to tether may cause them to reset to the Tethered
1464 * which failed to tether.
1493 * Attempt to tether the named interface. This will setup a dhcp server
1501 * @param iface the interface name to tether.
1508 public int tether(String iface) { method in class:ConnectivityManager
1510 return mService.tether(iface);
1536 * {@code ro.tether.denied} system property, Settings.TETHER_SUPPORTED or
1616 * attempt to switch to Rndis and subsequently tether th
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DTethering.java323 public int tether(String iface) { method in class:Tethering
536 int result = (enable ? tether(iface) : untether(iface));
731 // notification from the master SM that it's not in tether mode
733 // request from the user that it wants to tether
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java2356 public int tether(String iface) { method in class:ConnectivityService
2359 return mTethering.tether(iface);
2446 // if ro.tether.denied = true we default to no tethering
2451 int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);

Completed in 124 milliseconds