Lines Matching refs:path
644 def __init__(self, loop, path):
647 self.path = path
659 path=self.path))
667 path=self.path)
676 async def client(path):
677 reader, writer = await asyncio.open_unix_connection(path)
690 with test_utils.unix_socket_path() as path:
691 server = MyServer(self.loop, path)
694 self.loop.create_task(client(path)))
699 with test_utils.unix_socket_path() as path:
700 server = MyServer(self.loop, path)
703 self.loop.create_task(client(path)))