OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:deflateimpl
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/util/zip/
Deflater.java
212
return
deflateImpl
(buf, offset, byteCount, flushParm);
232
return
deflateImpl
(buf, offset, byteCount, flush);
235
private synchronized int
deflateImpl
(byte[] buf, int offset, int byteCount, int flush) {
241
return
deflateImpl
(buf, offset, byteCount, streamHandle, flush);
244
private native int
deflateImpl
(byte[] buf, int offset, int byteCount, long handle, int flushParm);
/libcore/luni/src/main/native/
java_util_zip_Deflater.cpp
139
NATIVE_METHOD(Deflater,
deflateImpl
, "([BIIJI)I"),
Completed in 512 milliseconds