Home
last modified time | relevance | path

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

/external/nanohttpd/core/src/test/java/fi/iki/elonen/
DHttpServerTest.java90 …public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputS… in createSession()
91 return new HTTPSession(tempFileManager, inputStream, outputStream); in createSession()
94 …public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputS… in createSession()
95 return new HTTPSession(tempFileManager, inputStream, outputStream, inetAddress); in createSession()
156 …NanoHTTPD.HTTPSession session = this.testServer.createSession(this.tempFileManager, inputStream, o… in invokeServer()
DHttpSessionHeadersTest.java63 …NanoHTTPD.HTTPSession session = this.testServer.createSession(HttpSessionHeadersTest.TEST_TEMP_FIL… in testHeadersRemoteIp()
DHttpKeepAliveTest.java98 …NanoHTTPD.HTTPSession session = HttpKeepAliveTest.this.testServer.createSession(tempFileManager, i… in testManyRequests()
/external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
DTestNanoFileUpLoad.java109 …public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputS… in createSession()
110 return new HTTPSession(tempFileManager, inputStream, outputStream); in createSession()
113 …public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputS… in createSession()
114 return new HTTPSession(tempFileManager, inputStream, outputStream, inetAddress); in createSession()
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java187HTTPSession session = new HTTPSession(tempFileManager, this.inputStream, outputStream, this.accept… in run()
533 protected class HTTPSession implements IHTTPSession { class in NanoHTTPD
569 …public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputSt… in HTTPSession() method in NanoHTTPD.HTTPSession
571 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE); in HTTPSession()
575 …public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputSt… in HTTPSession() method in NanoHTTPD.HTTPSession
577 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE); in HTTPSession()
771 byte[] buf = new byte[HTTPSession.BUFSIZE]; in execute()
776 this.inputStream.mark(HTTPSession.BUFSIZE); in execute()
778 read = this.inputStream.read(buf, 0, HTTPSession.BUFSIZE); in execute()
796 read = this.inputStream.read(buf, this.rlen, HTTPSession.BUFSIZE - this.rlen); in execute()