Home
last modified time | relevance | path

Searched refs:getLastTetherError (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Connectivity/Tethering/common/TetheringLib/api/
Dmodule-lib-current.txt14 method public int getLastTetherError(@NonNull String);
/packages/modules/Connectivity/framework/src/android/net/
DIConnectivityManager.aidl101 int getLastTetherError(String iface); in getLastTetherError() method
DConnectivityManager.java3522 public int getLastTetherError(String iface) { in getLastTetherError() method in ConnectivityManager
3523 int error = getTetheringManager().getLastTetherError(iface); in getLastTetherError()
/packages/modules/Connectivity/Tethering/common/TetheringLib/src/android/net/
DTetheringManager.java1523 public int getLastTetherError(@NonNull final String iface) {
/packages/modules/Connectivity/Tethering/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt187 Landroid/net/IConnectivityManager$Stub$Proxy;->getLastTetherError(Ljava/lang/String;)I
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java6794 public int getLastTetherError(String iface) {
6798 return tm.getLastTetherError(iface);
/packages/modules/Connectivity/tests/unit/java/com/android/server/
DConnectivityServiceTest.java18761 assertThrows(SecurityException.class, () -> mService.getLastTetherError(testIface));
18769 mService.getLastTetherError(testIface);
18770 verify(mTetheringManager).getLastTetherError(testIface);