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

  /external/xz-java/src/org/tukaani/xz/
MemoryLimitException.java 2 * MemoryLimitException
19 public class MemoryLimitException extends XZIOException {
26 * Creates a new MemoryLimitException.
34 public MemoryLimitException(int memoryNeeded, int memoryLimit) {
BlockInputStream.java 190 throw new MemoryLimitException(memoryNeeded, memoryLimit);
LZMAInputStream.java 243 * @throws MemoryLimitException
283 * @throws MemoryLimitException
317 throw new MemoryLimitException(memoryNeeded, memoryLimit);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/
MemoryLimitException.java 31 public class MemoryLimitException extends IOException {
39 public MemoryLimitException(long memoryNeededInKb, int memoryLimitInKb) {
45 public MemoryLimitException(long memoryNeededInKb, int memoryLimitInKb, Exception e) {
  /external/xz-java/src/org/tukaani/xz/index/
IndexDecoder.java 19 import org.tukaani.xz.MemoryLimitException;
80 throw new MemoryLimitException(memoryUsage, memoryLimit);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lzw/
LZWInputStream.java 25 import org.apache.commons.compress.MemoryLimitException;
130 * @throws MemoryLimitException if estimated memory usage is greater than memoryLimitInKb
133 throws MemoryLimitException {
142 throw new MemoryLimitException(memoryUsageInKb, memoryLimitInKb);

Completed in 247 milliseconds