Lines Matching refs:arg1

71     def __init__(self, opcode, is_or, is_not, arg1):  argument
80 self.arg1 = arg1
121 return cls(opcode=insn.opcode, is_or=is_or, is_not=is_not, arg1=insn.arg1)
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)
200 insn = IpFwInsn(opcode=self.obj_type, length=length, arg1=enum_or_int(self.arg1))
204 return " arg1={}".format(self.arg1)
230 if insn.arg1 != 0:
238 def __init__(self, opcode=IpFwOpcode.O_NOP, is_or=False, is_not=False, arg1=0, comment=""): argument
239 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
277 def __init__(self, opcode=IpFwOpcode.O_PROTO, is_or=False, is_not=False, arg1=0): argument
278 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
282 proto = self.arg1
290 def __init__(self, opcode, is_or=False, is_not=False, arg1=0, u32=0): argument
291 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
309 return " arg1={} u32={}".format(self.arg1, self.u32)
318 arg1=0, argument
338 def __init__(self, opcode, is_or=False, is_not=False, arg1=0, u32=0, ip=None): argument
339 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1, u32=u32)
380 return " table={} value={}".format(self.arg1, self.val)
382 return " table={}".format(self.arg1)
386 def __init__(self, opcode, is_or=False, is_not=False, arg1=0, mtu=None): argument
387 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
414 code = enum_from_int(IcmpRejectCode, self.arg1)
422 def __init__(self, opcode, is_or=False, is_not=False, arg1=0, port_pairs=[]): argument
472 def __init__(self, opcode, is_or=False, is_not=False, arg1=0, ip6=None, mask6=None): argument
473 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)