HomeSort by relevance Sort by last modified time
    Searched refs:bodyLimit (Results 1 - 2 of 2) sorted by null

  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 87 private int bodyLimit = Integer.MAX_VALUE;
151 this.bodyLimit = maxBodyLength;
596 * An output stream that drops data after bodyLimit bytes.
602 super.write(buffer, offset, Math.min(len, bodyLimit - count));
606 if (count < bodyLimit) {
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 104 private int bodyLimit = Integer.MAX_VALUE;
161 this.bodyLimit = maxBodyLength;
597 /** An output stream that drops data after bodyLimit bytes. */
603 super.write(buffer, offset, Math.min(len, bodyLimit - count));
608 if (count < bodyLimit) {

Completed in 56 milliseconds