Searched defs:tempFileManager (Results 1 - 3 of 3) sorted by path

/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java186 TempFileManager tempFileManager = NanoHTTPD.this.tempFileManagerFactory.create();
187 HTTPSession session = new HTTPSession(tempFileManager, this.inputStream, outputStream, this.acceptSocket.getInetAddress());
543 private final TempFileManager tempFileManager; field in class:NanoHTTPD.HTTPSession
569 public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream) { argument
570 this.tempFileManager = tempFileManager;
575 public HTTPSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) { argument
576 this.tempFileManager = tempFileManager;
875 this.tempFileManager
[all...]
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpServerTest.java90 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream) { argument
91 return new HTTPSession(tempFileManager, inputStream, outputStream);
94 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) { argument
95 return new HTTPSession(tempFileManager, inputStream, outputStream, inetAddress);
133 protected TestTempFileManager tempFileManager; field in class:HttpServerTest
156 NanoHTTPD.HTTPSession session = this.testServer.createSession(this.tempFileManager, inputStream, outputStream);
181 this.tempFileManager = new TestTempFileManager();
186 this.tempFileManager._clear();
/external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
H A DTestNanoFileUpLoad.java109 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream) { argument
110 return new HTTPSession(tempFileManager, inputStream, outputStream);
113 public HTTPSession createSession(TempFileManager tempFileManager, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) { argument
114 return new HTTPSession(tempFileManager, inputStream, outputStream, inetAddress);

Completed in 294 milliseconds