Searched defs:HTTPSession (Results 1 - 1 of 1) sorted by relevance

/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java187 HTTPSession session = new HTTPSession(tempFileManager, this.inputStream, outputStream, this.acceptSocket.getInetAddress());
533 protected class HTTPSession implements IHTTPSession { class in class:NanoHTTPD
569 public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream) { method in class:NanoHTTPD.HTTPSession
571 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE);
575 public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) { method in class:NanoHTTPD.HTTPSession
577 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE);
771 byte[] buf = new byte[HTTPSession.BUFSIZE];
776 this.inputStream.mark(HTTPSession.BUFSIZE);
778 read = this.inputStream.read(buf, 0, HTTPSession
[all...]

Completed in 218 milliseconds