HomeSort by relevance Sort by last modified time
    Searched full:execiptables (Results 1 - 4 of 4) sorted by null

  /system/netd/
FirewallController.cpp 48 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(target, op, LOCAL_OUTPUT, "-s", addr, "-j", "RETURN", NULL)
    [all...]
NetdConstants.cpp 65 static int execIptables(IptablesTarget target, bool silent, va_list args) {
94 int execIptables(IptablesTarget target, ...) {
97 int res = execIptables(target, false, args);
105 int res = execIptables(target, true, args);
NetdConstants.h 34 int execIptables(IptablesTarget target, ...);
CommandListener.cpp 120 execIptables(target, "-t", table, "-N", *childChain, NULL);
121 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL);
    [all...]

Completed in 48 milliseconds