Searched refs:execIptables (Results 1 - 4 of 4) sorted by relevance

/system/netd/
H A DFirewallController.cpp48 res |= execIptables(V4V6, "-A", LOCAL_INPUT, "-j", "DROP", NULL);
49 res |= execIptables(V4V6, "-A", LOCAL_OUTPUT, "-j", "REJECT", NULL);
50 res |= execIptables(V4V6, "-A", LOCAL_FORWARD, "-j", "REJECT", NULL);
59 res |= execIptables(V4V6, "-F", LOCAL_INPUT, NULL);
60 res |= execIptables(V4V6, "-F", LOCAL_OUTPUT, NULL);
61 res |= execIptables(V4V6, "-F", LOCAL_FORWARD, NULL);
80 res |= execIptables(V4V6, op, LOCAL_INPUT, "-i", iface, "-j", "RETURN", NULL);
81 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-o", iface, "-j", "RETURN", NULL);
99 res |= execIptables(target, op, LOCAL_INPUT, "-d", addr, "-j", "RETURN", NULL);
100 res |= execIptables(targe
[all...]
H A DNetdConstants.h36 int execIptables(IptablesTarget target, ...);
H A DNetdConstants.cpp44 static int execIptables(IptablesTarget target, bool silent, va_list args) { function
85 int execIptables(IptablesTarget target, ...) { function
88 int res = execIptables(target, false, args);
96 int res = execIptables(target, true, args);
H A DCommandListener.cpp121 execIptables(target, "-t", table, "-N", *childChain, NULL);
122 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL);

Completed in 97 milliseconds