HomeSort by relevance Sort by last modified time
    Searched defs:memoryLimit (Results 1 - 4 of 4) sorted by null

  /external/xz-java/src/org/tukaani/xz/
MemoryLimitException.java 23 private final int memoryLimit;
32 * @param memoryLimit specified memory usage limit as kibibytes (KiB)
34 public MemoryLimitException(int memoryNeeded, int memoryLimit) {
36 + memoryLimit + " KiB");
39 this.memoryLimit = memoryLimit;
58 return memoryLimit;
XZInputStream.java 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
    [all...]
SingleXZInputStream.java 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
    [all...]
SeekableXZInputStream.java 91 private final int memoryLimit;
95 * <code>memoryLimit + indexMemoryUsage</code> equals the original
262 * @param memoryLimit memory usage limit in kibibytes (KiB)
288 public SeekableXZInputStream(SeekableInputStream in, int memoryLimit)
290 this(in, memoryLimit, true);
304 * @param memoryLimit memory usage limit in kibibytes (KiB)
334 public SeekableXZInputStream(SeekableInputStream in, int memoryLimit,
337 this(in, memoryLimit, true, arrayCache);
363 * @param memoryLimit memory usage limit in kibibytes (KiB)
395 public SeekableXZInputStream(SeekableInputStream in, int memoryLimit,
    [all...]

Completed in 287 milliseconds