Home
last modified time | relevance | path

Searched refs:fromIface (Results 1 – 13 of 13) sorted by relevance

/aosp12/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl192 void startInterfaceForwarding(String fromIface, String toIface); in startInterfaceForwarding() argument
198 void stopInterfaceForwarding(String fromIface, String toIface); in stopInterfaceForwarding() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/1/android/net/
H A DINetd.aidl45 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
46 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java993 private void modifyInterfaceForward(boolean add, String fromIface, String toIface) { in modifyInterfaceForward() argument
996 mNetdService.ipfwdAddInterfaceForward(fromIface, toIface); in modifyInterfaceForward()
998 mNetdService.ipfwdRemoveInterfaceForward(fromIface, toIface); in modifyInterfaceForward()
1006 public void startInterfaceForwarding(String fromIface, String toIface) { in startInterfaceForwarding() argument
1008 modifyInterfaceForward(true, fromIface, toIface); in startInterfaceForwarding()
1012 public void stopInterfaceForwarding(String fromIface, String toIface) { in stopInterfaceForwarding() argument
1014 modifyInterfaceForward(false, fromIface, toIface); in stopInterfaceForwarding()
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/2/android/net/
H A DINetd.aidl62 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
63 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/3/android/net/
H A DINetd.aidl63 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
64 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/4/android/net/
H A DINetd.aidl63 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
64 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/6/android/net/
H A DINetd.aidl85 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
86 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/7/android/net/
H A DINetd.aidl85 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
86 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/5/android/net/
H A DINetd.aidl63 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
64 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/aidl_api/netd_aidl_interface/current/android/net/
H A DINetd.aidl85 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
86 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/binder/android/net/
H A DINetd.aidl611 void ipfwdAddInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdAddInterfaceForward() argument
621 void ipfwdRemoveInterfaceForward(in @utf8InCpp String fromIface, in @utf8InCpp String toIface); in ipfwdRemoveInterfaceForward() argument
/aosp12/system/netd/server/
H A DNetdNativeService.h253 binder::Status ipfwdAddInterfaceForward(const std::string& fromIface,
255 binder::Status ipfwdRemoveInterfaceForward(const std::string& fromIface,
H A DNetdNativeService.cpp870 binder::Status NetdNativeService::ipfwdAddInterfaceForward(const std::string& fromIface, in ipfwdAddInterfaceForward() argument
873 int res = RouteController::enableTethering(fromIface.c_str(), toIface.c_str()); in ipfwdAddInterfaceForward()
877 binder::Status NetdNativeService::ipfwdRemoveInterfaceForward(const std::string& fromIface, in ipfwdRemoveInterfaceForward() argument
880 int res = RouteController::disableTethering(fromIface.c_str(), toIface.c_str()); in ipfwdRemoveInterfaceForward()