Home | History | Annotate | Download | only in xz

Lines Matching refs:arrayCache

80     private final ArrayCache arrayCache;
223 * this also takes the <code>arrayCache</code> argument.
228 * @param arrayCache cache to be used for allocating large arrays
250 public SeekableXZInputStream(SeekableInputStream in, ArrayCache arrayCache)
252 this(in, -1, arrayCache);
299 * except that this also takes the <code>arrayCache</code> argument.
308 * @param arrayCache cache to be used for allocating large arrays
335 ArrayCache arrayCache)
337 this(in, memoryLimit, true, arrayCache);
398 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache());
408 * except that this also takes the <code>arrayCache</code> argument.
421 * @param arrayCache cache to be used for allocating large arrays
448 boolean verifyCheck, ArrayCache arrayCache)
450 this.arrayCache = arrayCache;
898 * However, if you are using {@link ArrayCache}, <code>close(false)</code>
1139 arrayCache);