/aosp12/frameworks/base/core/java/android/os/ |
H A D | INetworkManagementService.aidl | 192 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 D | INetd.aidl | 45 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 D | NetworkManagementService.java | 993 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 D | INetd.aidl | 62 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 D | INetd.aidl | 63 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 D | INetd.aidl | 63 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 D | INetd.aidl | 85 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 D | INetd.aidl | 85 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 D | INetd.aidl | 63 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 D | INetd.aidl | 85 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 D | INetd.aidl | 611 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 D | NetdNativeService.h | 254 const std::string& toIface) override; 256 const std::string& toIface) override;
|
H A D | NetdNativeService.cpp | 871 const std::string& toIface) { in ipfwdAddInterfaceForward() argument 873 int res = RouteController::enableTethering(fromIface.c_str(), toIface.c_str()); in ipfwdAddInterfaceForward() 878 const std::string& toIface) { in ipfwdRemoveInterfaceForward() argument 880 int res = RouteController::disableTethering(fromIface.c_str(), toIface.c_str()); in ipfwdRemoveInterfaceForward()
|