Searched defs:nowrap (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DInflater.java93 * Creates a new decompressor. If the parameter 'nowrap' is true then
97 * Note: When using the 'nowrap' option it is also necessary to provide
101 * @param nowrap if true then support GZIP compatible compression
103 public Inflater(boolean nowrap) { argument
104 zsRef = new ZStreamRef(init(nowrap));
411 private native static long init(boolean nowrap); argument
H A DDeflater.java162 * If 'nowrap' is true then the ZLIB header and checksum fields will
166 * @param nowrap if true then use GZIP compatible compression
168 public Deflater(int level, boolean nowrap) { argument
171 this.zsRef = new ZStreamRef(init(level, DEFAULT_STRATEGY, nowrap));
572 private native static long init(int level, int strategy, boolean nowrap); argument
/libcore/ojluni/src/main/native/
H A Djava_util_zip_Inflater.c61 Inflater_init(JNIEnv *env, jclass cls, jboolean nowrap) argument
70 int ret = inflateInit2(strm, nowrap ? -MAX_WBITS : MAX_WBITS);
H A Djava_util_zip_Deflater.c65 jint strategy, jboolean nowrap)
75 nowrap ? -MAX_WBITS : MAX_WBITS,
64 Deflater_init(JNIEnv *env, jclass cls, jint level, jint strategy, jboolean nowrap) argument

Completed in 86 milliseconds