Home
last modified time | relevance | path

Searched refs:toIface (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/os/
DINetworkManagementService.aidl204 void startInterfaceForwarding(String fromIface, String toIface); in startInterfaceForwarding() argument
210 void stopInterfaceForwarding(String fromIface, String toIface); in stopInterfaceForwarding() argument
/frameworks/base/services/core/java/com/android/server/
DNetworkManagementService.java1093 private void modifyInterfaceForward(boolean add, String fromIface, String toIface) { in modifyInterfaceForward() argument
1096 mNetdService.ipfwdAddInterfaceForward(fromIface, toIface); in modifyInterfaceForward()
1098 mNetdService.ipfwdRemoveInterfaceForward(fromIface, toIface); in modifyInterfaceForward()
1106 public void startInterfaceForwarding(String fromIface, String toIface) { in startInterfaceForwarding() argument
1108 modifyInterfaceForward(true, fromIface, toIface); in startInterfaceForwarding()
1112 public void stopInterfaceForwarding(String fromIface, String toIface) { in stopInterfaceForwarding() argument
1114 modifyInterfaceForward(false, fromIface, toIface); in stopInterfaceForwarding()