Lines Matching defs:memoryLimit
66 private final int memoryLimit;
143 * that this takes also the <code>memoryLimit</code> argument.
148 * @param memoryLimit memory usage limit in kibibytes (KiB)
168 public XZInputStream(InputStream in, int memoryLimit) throws IOException {
169 this(in, memoryLimit, true);
176 * that this takes also the <code>memoryLimit</code> and
182 * @param memoryLimit memory usage limit in kibibytes (KiB)
206 public XZInputStream(InputStream in, int memoryLimit,
208 this(in, memoryLimit, true, arrayCache);
236 * @param memoryLimit memory usage limit in kibibytes (KiB)
262 public XZInputStream(InputStream in, int memoryLimit, boolean verifyCheck)
264 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache());
277 * @param memoryLimit memory usage limit in kibibytes (KiB)
305 public XZInputStream(InputStream in, int memoryLimit, boolean verifyCheck,
309 this.memoryLimit = memoryLimit;
311 this.xzIn = new SingleXZInputStream(in, memoryLimit, verifyCheck,
446 xzIn = new SingleXZInputStream(in, memoryLimit, verifyCheck, buf,