Home
last modified time | relevance | path

Searched refs:BrotliRuntimeException (Results 1 – 6 of 6) sorted by relevance

/external/brotli/java/org/brotli/dec/
DBitReader.java73 throw new BrotliRuntimeException("No more input"); in readMoreInput()
91 throw new BrotliRuntimeException("Failed to read input", e); in readMoreInput()
102 throw new BrotliRuntimeException("Read after end"); in checkHealth()
105 throw new BrotliRuntimeException("Unused bytes after end"); in checkHealth()
177 throw new BrotliRuntimeException("Corrupted padding bits"); in jumpToByteBoundary()
192 throw new BrotliRuntimeException("Unaligned copyBytes"); in copyBytes()
236 throw new BrotliRuntimeException("Unexpected end of input"); in copyBytes()
242 throw new BrotliRuntimeException("Failed to read input", e); in copyBytes()
DBrotliRuntimeException.java12 class BrotliRuntimeException extends RuntimeException { class
14 BrotliRuntimeException(String message) { in BrotliRuntimeException() method in BrotliRuntimeException
18 BrotliRuntimeException(String message, Throwable cause) { in BrotliRuntimeException() method in BrotliRuntimeException
DDecode.java88 throw new BrotliRuntimeException("Corrupted reserved bit"); in decodeMetaBlockLength()
97 throw new BrotliRuntimeException("Exuberant nibble"); in decodeMetaBlockLength()
105 throw new BrotliRuntimeException("Exuberant nibble"); in decodeMetaBlockLength()
214 throw new BrotliRuntimeException("symbol + repeatDelta > numSymbols"); // COV_NF_LINE in readHuffmanCodeLengths()
225 throw new BrotliRuntimeException("Unused space"); // COV_NF_LINE in readHuffmanCodeLengths()
298 throw new BrotliRuntimeException("Can't readHuffmanCode"); // COV_NF_LINE in readHuffmanCode()
330 throw new BrotliRuntimeException("Corrupted context map"); // COV_NF_LINE in decodeContextMap()
611 throw new BrotliRuntimeException("Invalid metablock length"); in decompress()
733 throw new BrotliRuntimeException("Negative distance"); // COV_NF_LINE in decompress()
755 throw new BrotliRuntimeException("Invalid backward reference"); // COV_NF_LINE in decompress()
[all …]
DBrotliInputStream.java99 } catch (BrotliRuntimeException ex) { in BrotliInputStream()
166 } catch (BrotliRuntimeException ex) { in read()
DBitReaderTest.java29 } catch (BrotliRuntimeException ex) { in testReadAfterEos()
DState.java103 throw new BrotliRuntimeException("Invalid 'windowBits' code"); in setInput()