Home
last modified time | relevance | path

Searched refs:MemoryLimitException (Results 1 – 11 of 11) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/xz/
DXZCompressorInputStream.java28 import org.apache.commons.compress.MemoryLimitException;
145 } catch (org.tukaani.xz.MemoryLimitException e) { in read()
146 throw new MemoryLimitException(e.getMemoryNeeded(), e.getMemoryLimit(), e); in read()
156 } catch (org.tukaani.xz.MemoryLimitException e) { in read()
158 throw new MemoryLimitException(e.getMemoryNeeded(), e.getMemoryLimit(), e); in read()
166 } catch (org.tukaani.xz.MemoryLimitException e) { in skip()
168 throw new MemoryLimitException(e.getMemoryNeeded(), e.getMemoryLimit(), e); in skip()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/
DMemoryLimitException.java31 public class MemoryLimitException extends IOException { class
39 public MemoryLimitException(long memoryNeededInKb, int memoryLimitInKb) { in MemoryLimitException() method in MemoryLimitException
45 public MemoryLimitException(long memoryNeededInKb, int memoryLimitInKb, Exception e) { in MemoryLimitException() method in MemoryLimitException
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lzma/
DLZMACompressorInputStream.java24 import org.apache.commons.compress.MemoryLimitException;
80 } catch (org.tukaani.xz.MemoryLimitException e) { in LZMACompressorInputStream()
82 throw new MemoryLimitException(e.getMemoryNeeded(), e.getMemoryLimit(), e); in LZMACompressorInputStream()
/external/xz-java/src/org/tukaani/xz/
DMemoryLimitException.java19 public class MemoryLimitException extends XZIOException { class
34 public MemoryLimitException(int memoryNeeded, int memoryLimit) { in MemoryLimitException() method in MemoryLimitException
DSeekableXZInputStream.java517 } catch (MemoryLimitException e) { in SeekableXZInputStream()
521 throw new MemoryLimitException( in SeekableXZInputStream()
1140 } catch (MemoryLimitException e) {
1144 throw new MemoryLimitException(
DBlockInputStream.java190 throw new MemoryLimitException(memoryNeeded, memoryLimit); in BlockInputStream()
DLZMAInputStream.java317 throw new MemoryLimitException(memoryNeeded, memoryLimit); in LZMAInputStream()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/
DDetectCompressorTestCase.java34 import org.apache.commons.compress.MemoryLimitException;
180 @Test(expected = MemoryLimitException.class)
185 @Test(expected = MemoryLimitException.class)
190 @Test(expected = MemoryLimitException.class)
203 @Test(expected = MemoryLimitException.class)
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lzw/
DLZWInputStream.java25 import org.apache.commons.compress.MemoryLimitException;
133 throws MemoryLimitException { in initializeTables()
142 throw new MemoryLimitException(memoryUsageInKb, memoryLimitInKb); in initializeTables()
/external/xz-java/src/org/tukaani/xz/index/
DIndexDecoder.java19 import org.tukaani.xz.MemoryLimitException;
80 throw new MemoryLimitException(memoryUsage, memoryLimit); in IndexDecoder()
/external/xz-java/
Dfileset-src.txt44 src/org/tukaani/xz/MemoryLimitException.java