Lines Matching refs:V4V6
87 res |= execIptables(V4V6, "-A", LOCAL_INPUT, "-j", "DROP", NULL); in enableFirewall()
88 res |= execIptables(V4V6, "-A", LOCAL_OUTPUT, "-j", "REJECT", NULL); in enableFirewall()
89 res |= execIptables(V4V6, "-A", LOCAL_FORWARD, "-j", "REJECT", NULL); in enableFirewall()
104 res |= execIptables(V4V6, "-F", LOCAL_INPUT, NULL); in disableFirewall()
105 res |= execIptables(V4V6, "-F", LOCAL_OUTPUT, NULL); in disableFirewall()
106 res |= execIptables(V4V6, "-F", LOCAL_FORWARD, NULL); in disableFirewall()
162 res |= execIptables(V4V6, op, LOCAL_INPUT, "-i", iface, "-j", "RETURN", NULL); in setInterfaceRule()
163 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-o", iface, "-j", "RETURN", NULL); in setInterfaceRule()
259 res |= execIptables(V4V6, op, LOCAL_DOZABLE, "-m", "owner", "--uid-owner", in setUidRule()
263 res |= execIptables(V4V6, op, LOCAL_STANDBY, "-m", "owner", "--uid-owner", in setUidRule()
267 res |= execIptables(V4V6, op, LOCAL_POWERSAVE, "-m", "owner", "--uid-owner", in setUidRule()
271 res |= execIptables(V4V6, op, LOCAL_INPUT, "-m", "owner", "--uid-owner", uidStr, in setUidRule()
273 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-m", "owner", "--uid-owner", uidStr, in setUidRule()
284 return execIptables(V4V6, "-t", TABLE, "-A", parentChain, "-j", childChain, NULL); in attachChain()
288 return execIptables(V4V6, "-t", TABLE, "-D", parentChain, "-j", childChain, NULL); in detachChain()
293 execIptablesSilently(V4V6, "-t", TABLE, "-D", parentChain, "-j", childChain, NULL); in createChain()