Home | History | Annotate | Download | only in xz

Lines Matching defs:memoryLimit

45     private final int memoryLimit;
137 * except that this also takes the <code>memoryLimit</code> argument.
142 * @param memoryLimit memory usage limit in kibibytes (KiB)
162 public SingleXZInputStream(InputStream in, int memoryLimit)
164 this(in, memoryLimit, true);
172 * except that this also takes the <code>memoryLimit</code> and
178 * @param memoryLimit memory usage limit in kibibytes (KiB)
202 public SingleXZInputStream(InputStream in, int memoryLimit,
204 this(in, memoryLimit, true, arrayCache);
233 * @param memoryLimit memory usage limit in kibibytes (KiB)
259 public SingleXZInputStream(InputStream in, int memoryLimit,
261 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache());
276 * @param memoryLimit memory usage limit in kibibytes (KiB)
304 public SingleXZInputStream(InputStream in, int memoryLimit,
307 this(in, memoryLimit, verifyCheck, readStreamHeader(in), arrayCache);
310 SingleXZInputStream(InputStream in, int memoryLimit, boolean verifyCheck,
315 this.memoryLimit = memoryLimit;
421 in, check, verifyCheck, memoryLimit, -1, -1,