Searched defs:inflate (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/zip/
H A DDeflaterInputStreamTest.java42 assertEquals(Arrays.toString(data), Arrays.toString(inflate(out.toByteArray())));
52 public byte[] inflate(byte[] bytes) throws IOException { method in class:DeflaterInputStreamTest
76 assertEquals(Arrays.toString(data), Arrays.toString(inflate(out.toByteArray())));
/libcore/luni/src/main/native/
H A DZipUtilities.cpp46 bool inflate) {
55 if (inflate) {
45 setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate) argument
/libcore/luni/src/main/java/java/util/zip/
H A DInflater.java37 * if (inflater.inflate(decompressedBytes) != decompressedByteCount) {
47 * <p>If you don't know how big the decompressed data will be, you can call {@link #inflate}
213 public int inflate(byte[] buf) throws DataFormatException { method in class:Inflater
214 return inflate(buf, 0, buf.length);
226 public synchronized int inflate(byte[] buf, int offset, int byteCount) throws DataFormatException { method in class:Inflater
248 * dictionary. This method should be called if the first call to {@link #inflate} returns 0,
251 * inflate} again. Use {@link #getAdler} to determine which dictionary is required.

Completed in 880 milliseconds