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

/frameworks/base/services/core/java/com/android/server/connectivity/
H A DTethering.java146 // {@link ComponentName} of the Service used to run tether provisioning.
395 * @return a boolean - {@code true} indicating tether provisioning is required by the carrier.
446 Log.w(TAG, "Invalid tether type.");
593 public int tether(String iface) { method in class:Tethering
805 // When the AP comes up and we've been requested to tether it, do so.
830 // down. Don't try to tether again unless we're requested to do so.
865 int result = (enable ? tether(chosenIface) : untether(chosenIface));
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DConnectivityServiceMock.java611 public int tether(String iface) { method in class:ConnectivityServiceMock
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java315 * gives a String[] listing all the interfaces we tried to tether and
400 * Extra used for communicating with the TetherService. True to schedule a recheck of tether
1917 * Get the set of interface names which attempted to tether but
1918 * failed. Re-attempting to tether may cause them to reset to the Tethered
1927 * which failed to tether.
1954 * Attempt to tether the named interface. This will setup a dhcp server
1972 * @param iface the interface name to tether.
1977 public int tether(String iface) { method in class:ConnectivityManager
1979 return mService.tether(iface);
2013 * {@code ro.tether
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java2991 public int tether(String iface) { method in class:ConnectivityService
2994 final int status = mTethering.tether(iface);
3093 // if ro.tether.denied = true we default to no tethering
3099 int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
5482 for (String tether : getTetheredIfaces()) {
5483 untether(tether);

Completed in 191 milliseconds