Searched defs:maxChunkSize (Results 1 - 2 of 2) sorted by relevance

/libcore/support/src/test/java/tests/http/
H A DMockResponse.java112 public MockResponse setChunkedBody(byte[] body, int maxChunkSize) throws IOException { argument
119 int chunkSize = Math.min(body.length - pos, maxChunkSize);
131 public MockResponse setChunkedBody(String body, int maxChunkSize) throws IOException { argument
132 return setChunkedBody(body.getBytes(ASCII), maxChunkSize);
/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebServer.java79 int maxChunkSize = 1024; field in class:Support_TestWebServer
164 public void setMaxChunkSize(int maxChunkSize) { argument
165 this.maxChunkSize = maxChunkSize;
840 int chunkSize = Math.min(bytes.length - offset, maxChunkSize);

Completed in 50 milliseconds