Searched refs:tempFileManager (Results 1 – 2 of 2) sorted by relevance
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
D | HttpServerTest.java | 23 private TestTempFileManager tempFileManager; field in HttpServerTest 28 tempFileManager = new TestTempFileManager(); in setUp() 33 tempFileManager._clear(); in tearDown() 59 …NanoHTTPD.HTTPSession session = testServer.createSession(tempFileManager, inputStream, outputStrea… in invokeServer() 112 …public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputS… in createSession() argument 113 return new HTTPSession(tempFileManager, inputStream, outputStream); in createSession() 116 …public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputS… in createSession() argument 117 return new HTTPSession(tempFileManager, inputStream, outputStream, inetAddress); in createSession()
|
/external/nanohttpd/core/src/main/java/fi/iki/elonen/ |
D | NanoHTTPD.java | 172 … TempFileManager tempFileManager = tempFileManagerFactory.create(); in start() 173 …HTTPSession session = new HTTPSession(tempFileManager, inputStream, outputStream, finalAccept.getI… in start() 848 private final TempFileManager tempFileManager; field in NanoHTTPD.HTTPSession 860 …public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputSt… in HTTPSession() argument 861 this.tempFileManager = tempFileManager; in HTTPSession() 866 …public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputSt… in HTTPSession() argument 867 this.tempFileManager = tempFileManager; in HTTPSession() 959 tempFileManager.clear(); in execute() 1234 TempFile tempFile = tempFileManager.createTempFile(); in saveTmpFile() 1252 TempFile tempFile = tempFileManager.createTempFile(); in getTmpBucket()
|