Lines Matching refs:respond
685 … self.request.respond(HTTPStatus.BAD_REQUEST, b"Bad request!\nThis is Winscope ADB proxy.\n\n"
690 self.request.respond(HTTPStatus.INTERNAL_SERVER_ERROR,
695 …self.request.respond(HTTPStatus.FORBIDDEN, b"Bad Winscope authorisation token!\nThis is Winscope A…
768 server.respond(HTTPStatus.OK, res.encode("utf-8"), "text/json")
784 server.respond(HTTPStatus.OK, j.encode("utf-8"), "text/json")
857 server.respond(HTTPStatus.OK, j.encode("utf-8"), "text/json")
987 server.respond(HTTPStatus.OK, b'', "text/plain")
1003 server.respond(HTTPStatus.OK, b'', "text/plain")
1029 server.respond(HTTPStatus.OK, out, "text/plain")
1046 server.respond(HTTPStatus.OK, b'', "text/plain")
1122 server.respond(HTTPStatus.OK, str(
1159 server.respond(HTTPStatus.OK, b'', "text/plain")
1185 def respond(self, code: int, data: bytes, mime: str) -> None: member in ADBWinscopeProxy