Searched refs:is_or (Results 1 – 2 of 2) sorted by relevance
/freebsd/tests/atf_python/sys/netpfil/ipfw/ |
H A D | insns.py | 71 def __init__(self, opcode, is_or, is_not, arg1): argument 78 self.is_or = is_or 119 is_or = (insn.length & 0x40) != 0 121 return cls(opcode=insn.opcode, is_or=is_or, is_not=is_not, arg1=insn.arg1) 134 is_or = "" 135 if self.is_or: 136 is_or = " [OR]\\" 148 is_or, 187 def __init__(self, opcode, is_or=False, is_not=False, arg1=0): argument 188 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1) [all …]
|
/freebsd/sbin/ipfw/tests/ |
H A D | test_add_rule.py | 138 InsnIp(IpFwOpcode.O_IP_SRC, ip="1.2.3.4", is_or=True),
|