Searched defs:toIface (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java1317 private void modifyInterfaceForward(boolean add, String fromIface, String toIface) { argument
1318 final Command cmd = new Command("ipfwd", add ? "add" : "remove", fromIface, toIface);
1327 public void startInterfaceForwarding(String fromIface, String toIface) { argument
1329 modifyInterfaceForward(true, fromIface, toIface);
1333 public void stopInterfaceForwarding(String fromIface, String toIface) { argument
1335 modifyInterfaceForward(false, fromIface, toIface);

Completed in 103 milliseconds