Home | History | Annotate | Download | only in test

Lines Matching defs:bytecode

65 # Bytecode operations.
176 """Compiles instructions to inet_diag bytecode.
206 or the bytecode won't validate. It doesn't have to be jmp - any instruction
213 A string, the raw bytecode.
265 def DecodeBytecode(bytecode):
268 while bytecode:
269 op, rest = cstruct.Read(bytecode, InetDiagBcOp)
295 bytecode = rest
301 def Dump(self, diag_req, bytecode):
302 if bytecode:
303 bytecode = self._NlAttr(INET_DIAG_REQ_BYTECODE, bytecode)
305 out = self._Dump(SOCK_DIAG_BY_FAMILY, diag_req, InetDiagMsg, bytecode)
308 def DumpAllInetSockets(self, protocol, bytecode, sock_id=None, ext=0,
319 sockets += self.Dump(diag_req, bytecode)
422 bytecode = ""