HomeSort by relevance Sort by last modified time
    Searched refs:execIptables (Results 1 - 5 of 5) 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.h 34 int execIptables(IptablesTarget target, ...);
SecondaryTableController.cpp 59 int res = execIptables(V4V6,
65 res |= execIptables(V4V6,
74 res |= execIptables(V4V6,
89 res |= execIptables(V4V6,
391 ret = execIptables(V4V6,
399 ret |= execIptables(V4V6,
415 ret |= execIptables(V4V6,
427 execIptables(V4V6,
439 ret = execIptables(V4V6,
453 ret |= execIptables(V4V6
    [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);
CommandListener.cpp 129 execIptables(target, "-t", table, "-N", *childChain, NULL);
130 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL);
    [all...]

Completed in 778 milliseconds