Lines Matching refs:V4V6
77 res |= execIptables(V4V6, "-A", LOCAL_INPUT, "-j", "DROP", NULL);
78 res |= execIptables(V4V6, "-A", LOCAL_OUTPUT, "-j", "REJECT", NULL);
79 res |= execIptables(V4V6, "-A", LOCAL_FORWARD, "-j", "REJECT", NULL);
94 res |= execIptables(V4V6, "-F", LOCAL_INPUT, NULL);
95 res |= execIptables(V4V6, "-F", LOCAL_OUTPUT, NULL);
96 res |= execIptables(V4V6, "-F", LOCAL_FORWARD, NULL);
149 res |= execIptables(V4V6, op, LOCAL_INPUT, "-i", iface, "-j", "RETURN", NULL);
150 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-o", iface, "-j", "RETURN", NULL);
242 res |= execIptables(V4V6, op, LOCAL_DOZABLE, "-m", "owner", "--uid-owner",
246 res |= execIptables(V4V6, op, LOCAL_STANDBY, "-m", "owner", "--uid-owner",
250 res |= execIptables(V4V6, op, LOCAL_INPUT, "-m", "owner", "--uid-owner", uidStr,
252 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-m", "owner", "--uid-owner", uidStr,
263 return execIptables(V4V6, "-t", TABLE, "-A", parentChain, "-j", childChain, NULL);
267 return execIptables(V4V6, "-t", TABLE, "-D", parentChain, "-j", childChain, NULL);
273 execIptablesSilently(V4V6, "-t", TABLE, "-D", parentChain, "-j", childChain, NULL);
274 execIptablesSilently(V4V6, "-t", TABLE, "-F", childChain, NULL);
275 execIptablesSilently(V4V6, "-t", TABLE, "-X", childChain, NULL);
277 res |= execIptables(V4V6, "-t", TABLE, "-N", childChain, NULL);
288 res |= execIptables(V4V6, "-A", childChain, "-m", "owner", "--uid-owner",
292 res |= execIptables(V4V6, "-A", childChain, "-j", "DROP", NULL);