Home
last modified time | relevance | path

Searched refs:responseWriter (Results 1 – 1 of 1) sorted by relevance

/webkit/integration-tests/testapp/src/main/java/com/example/androidx/webkit/
DHttpServer.java202 abstract void writeResponse(String request, BufferedWriter responseWriter) in writeResponse() argument
215 void writeResponse(String request, BufferedWriter responseWriter) throws IOException { in writeResponse() argument
216 responseWriter.write("HTTP/1.0 200 OK\nContent-Type: text/html\n\r\n"); in writeResponse()
217 responseWriter.write("<html><head><title>HttpServer</title></head>" in writeResponse()
220 responseWriter.flush(); in writeResponse()
234 void writeResponse(String request, BufferedWriter responseWriter) throws IOException { in writeResponse() argument
235 responseWriter.write("HTTP/1.0 200 OK\nUser-Agent: Proxy\n\r\n"); in writeResponse()
236 responseWriter.write("<html><head><title>Proxy</title></head>" in writeResponse()
239 responseWriter.flush(); in writeResponse()