Searched refs:toIface (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/core/java/android/os/ |
H A D | INetworkManagementService.aidl | 193 void startInterfaceForwarding(String fromIface, String toIface); in startInterfaceForwarding() argument 199 void stopInterfaceForwarding(String fromIface, String toIface); in stopInterfaceForwarding() argument
|
/aosp14/frameworks/base/services/core/java/com/android/server/net/ |
H A D | NetworkManagementService.java | 988 private void modifyInterfaceForward(boolean add, String fromIface, String toIface) { in modifyInterfaceForward() argument 991 mNetdService.ipfwdAddInterfaceForward(fromIface, toIface); in modifyInterfaceForward() 993 mNetdService.ipfwdRemoveInterfaceForward(fromIface, toIface); in modifyInterfaceForward() 1001 public void startInterfaceForwarding(String fromIface, String toIface) { in startInterfaceForwarding() argument 1003 modifyInterfaceForward(true, fromIface, toIface); in startInterfaceForwarding() 1007 public void stopInterfaceForwarding(String fromIface, String toIface) { in stopInterfaceForwarding() argument 1009 modifyInterfaceForward(false, fromIface, toIface); in stopInterfaceForwarding()
|