Searched refs:MemoryLimitException (Results 1 – 11 of 11) sorted by relevance
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/xz/ |
D | XZCompressorInputStream.java | 28 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/ |
D | MemoryLimitException.java | 31 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/ |
D | LZMACompressorInputStream.java | 24 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/ |
D | MemoryLimitException.java | 19 public class MemoryLimitException extends XZIOException { class 34 public MemoryLimitException(int memoryNeeded, int memoryLimit) { in MemoryLimitException() method in MemoryLimitException
|
D | SeekableXZInputStream.java | 517 } catch (MemoryLimitException e) { in SeekableXZInputStream() 521 throw new MemoryLimitException( in SeekableXZInputStream() 1140 } catch (MemoryLimitException e) { 1144 throw new MemoryLimitException(
|
D | BlockInputStream.java | 190 throw new MemoryLimitException(memoryNeeded, memoryLimit); in BlockInputStream()
|
D | LZMAInputStream.java | 317 throw new MemoryLimitException(memoryNeeded, memoryLimit); in LZMAInputStream()
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/ |
D | DetectCompressorTestCase.java | 34 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/ |
D | LZWInputStream.java | 25 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/ |
D | IndexDecoder.java | 19 import org.tukaani.xz.MemoryLimitException; 80 throw new MemoryLimitException(memoryUsage, memoryLimit); in IndexDecoder()
|
/external/xz-java/ |
D | fileset-src.txt | 44 src/org/tukaani/xz/MemoryLimitException.java
|