Searched refs:fromIface (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/os/ |
D | INetworkManagementService.aidl | 195 void startInterfaceForwarding(String fromIface, String toIface); in startInterfaceForwarding() argument 201 void stopInterfaceForwarding(String fromIface, String toIface); in stopInterfaceForwarding() argument
|
/frameworks/base/services/core/java/com/android/server/ |
D | NetworkManagementService.java | 1117 private void modifyInterfaceForward(boolean add, String fromIface, String toIface) { in modifyInterfaceForward() argument 1120 mNetdService.ipfwdAddInterfaceForward(fromIface, toIface); in modifyInterfaceForward() 1122 mNetdService.ipfwdRemoveInterfaceForward(fromIface, toIface); in modifyInterfaceForward() 1130 public void startInterfaceForwarding(String fromIface, String toIface) { in startInterfaceForwarding() argument 1132 modifyInterfaceForward(true, fromIface, toIface); in startInterfaceForwarding() 1136 public void stopInterfaceForwarding(String fromIface, String toIface) { in stopInterfaceForwarding() argument 1138 modifyInterfaceForward(false, fromIface, toIface); in stopInterfaceForwarding()
|