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

/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DByteArrayPool.java77 * @param sizeLimit the maximum size of the pool, in bytes
79 public ByteArrayPool(int sizeLimit) { argument
80 mSizeLimit = sizeLimit;
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DURLFetcher.java134 public static String inputStreamToString(InputStream inputStream, int length, long sizeLimit) argument
145 if (baos.size() > sizeLimit) {
147 + sizeLimit);

Completed in 87 milliseconds