Lines Matching refs:pipe
225 self.pipe = None
236 def set_pipe(self, pipe): argument
237 self.pipe = pipe
345 def _setup_vnet(self, vnet: VnetInstance, obj_map: Dict, pipe): argument
352 if pipe is not None:
353 vnet.set_pipe(pipe)
503 def wait_object(self, pipe, timeout=5): argument
504 if pipe.poll(timeout):
505 return pipe.recv()
514 def send_object(self, pipe, obj): argument
515 pipe.send(obj)