Searched refs:tempFileManager (Results 1 - 6 of 6) sorted by last modified time

/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 DHttpKeepAliveTest.java96 NanoHTTPD.DefaultTempFileManager tempFileManager = new NanoHTTPD.DefaultTempFileManager();
98 NanoHTTPD.HTTPSession session = HttpKeepAliveTest.this.testServer.createSession(tempFileManager, inputStream, outputStream);
123 tempFileManager.clear();
H A DHttpSSLServerTest.java70 this.tempFileManager = new TestTempFileManager();
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();
H A DSSLServerSocketFactoryTest.java71 this.tempFileManager = new TestTempFileManager();
/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 183 milliseconds