summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRobert Greenwalt <robdroid@android.com>2010-02-18 11:25:54 -0800
committerRobert Greenwalt <robdroid@android.com>2010-02-18 12:10:55 -0800
commitce1200d42c46ae5d3ec637587b07dfdc02ad21c0 (patch)
tree093e3d8693a3e8e1f5e36fbc8032711a8a964b90 /core
parent0a073274d82443e7fbb964f069fed58215641aa8 (diff)
downloadframeworks_base-ce1200d42c46ae5d3ec637587b07dfdc02ad21c0.zip
frameworks_base-ce1200d42c46ae5d3ec637587b07dfdc02ad21c0.tar.gz
frameworks_base-ce1200d42c46ae5d3ec637587b07dfdc02ad21c0.tar.bz2
Add USB RNDIS enable/disable control
Diffstat (limited to 'core')
-rw-r--r--core/java/android/os/INetworkManagementService.aidl14
1 files changed, 14 insertions, 0 deletions
diff --git a/core/java/android/os/INetworkManagementService.aidl b/core/java/android/os/INetworkManagementService.aidl
index f48f45f..92041d8 100644
--- a/core/java/android/os/INetworkManagementService.aidl
+++ b/core/java/android/os/INetworkManagementService.aidl
@@ -148,4 +148,18 @@ interface INetworkManagementService
*/
void detachPppd(String tty);
+ /**
+ * Turn on USB RNDIS support - this will turn off thinks like adb/mass-storage
+ */
+ void startUsbRNDIS();
+
+ /**
+ * Turn off USB RNDIS support
+ */
+ void stopUsbRNDIS();
+
+ /**
+ * Check the status of USB RNDIS support
+ */
+ boolean isUsbRNDISStarted();
}