Lines Matching defs:pipe
225 self.pipe = None
236 def set_pipe(self, pipe):
237 self.pipe = pipe
345 def _setup_vnet(self, vnet: VnetInstance, obj_map: Dict, pipe):
352 if pipe is not None:
353 vnet.set_pipe(pipe)
486 # are started & their pipe handles collected
503 def wait_object(self, pipe, timeout=5):
504 if pipe.poll(timeout):
505 return pipe.recv()
514 def send_object(self, pipe, obj):
515 pipe.send(obj)