Home | History | Annotate | Download | only in http

Lines Matching defs:maxSize

159     private HttpResponseCache(File directory, long maxSize) throws IOException {
160 this.delegate = new libcore.net.http.HttpResponseCache(directory, maxSize);
177 * @param maxSize the maximum size of the cache in bytes.
183 public static HttpResponseCache install(File directory, long maxSize) throws IOException {
189 && installedCache.maxSize() == maxSize
197 HttpResponseCache result = new HttpResponseCache(directory, maxSize);
213 * this cache. This may be greater than the {@link #maxSize} if a background
224 public long maxSize() {
225 return delegate.getCache().maxSize();