OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempFileManager
(Results
1 - 6
of
6
) sorted by null
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpServerTest.java
90
public HTTPSession createSession(
TempFileManager
tempFileManager
, InputStream inputStream, OutputStream outputStream) {
91
return new HTTPSession(
tempFileManager
, inputStream, outputStream);
94
public HTTPSession createSession(
TempFileManager
tempFileManager
, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) {
95
return new HTTPSession(
tempFileManager
, inputStream, outputStream, inetAddress);
133
protected TestTempFileManager
tempFileManager
;
156
NanoHTTPD.HTTPSession session = this.testServer.createSession(this.
tempFileManager
, inputStream, outputStream);
181
this.
tempFileManager
= new TestTempFileManager();
186
this.
tempFileManager
._clear()
[
all
...]
HttpKeepAliveTest.java
96
NanoHTTPD.DefaultTempFileManager
tempFileManager
= new NanoHTTPD.DefaultTempFileManager();
98
NanoHTTPD.HTTPSession session = HttpKeepAliveTest.this.testServer.createSession(
tempFileManager
, inputStream, outputStream);
123
tempFileManager
.clear();
HttpSSLServerTest.java
70
this.
tempFileManager
= new TestTempFileManager();
SSLServerSocketFactoryTest.java
71
this.
tempFileManager
= new TestTempFileManager();
/external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
TestNanoFileUpLoad.java
109
public HTTPSession createSession(
TempFileManager
tempFileManager
, InputStream inputStream, OutputStream outputStream) {
110
return new HTTPSession(
tempFileManager
, inputStream, outputStream);
113
public HTTPSession createSession(
TempFileManager
tempFileManager
, InputStream inputStream, OutputStream outputStream, InetAddress inetAddress) {
114
return new HTTPSession(
tempFileManager
, inputStream, outputStream, inetAddress);
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java
186
TempFileManager
tempFileManager
= NanoHTTPD.this.tempFileManagerFactory.create();
187
HTTPSession session = new HTTPSession(
tempFileManager
, this.inputStream, outputStream, this.acceptSocket.getInetAddress());
425
public static class DefaultTempFileManager implements
TempFileManager
{
465
public
TempFileManager
create() {
543
private final
TempFileManager
tempFileManager
;
569
public HTTPSession(
TempFileManager
tempFileManager
, InputStream inputStream, OutputStream outputStream) {
570
this.
tempFileManager
= tempFileManager
[
all
...]
Completed in 134 milliseconds