Lines Matching defs:client
610 async def client(addr):
623 # test the server variant with a coroutine as client handler
626 msg = self.loop.run_until_complete(self.loop.create_task(client(addr)))
630 # test the server variant with a callback as client handler
633 msg = self.loop.run_until_complete(self.loop.create_task(client(addr)))
676 async def client(path):
689 # test the server variant with a coroutine as client handler
694 self.loop.create_task(client(path)))
698 # test the server variant with a callback as client handler
703 self.loop.create_task(client(path)))
745 async def client(addr):
765 msg1, msg2 = self.loop.run_until_complete(client(addr))
898 async def client(host, port):
914 self.loop.run_until_complete(client(*addr))