HomeSort by relevance Sort by last modified time
    Searched refs:NativeZipStream (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/native/
ZipUtilities.h 26 class NativeZipStream {
34 NativeZipStream();
35 ~NativeZipStream();
43 NativeZipStream(const NativeZipStream&);
44 void operator=(const NativeZipStream&);
47 NativeZipStream* toNativeZipStream(jlong address);
50 NativeZipStream* stream);
ZipUtilities.cpp 25 NativeZipStream* stream) {
35 NativeZipStream::NativeZipStream() : inCap(0), totalIn(0), totalOut(0) {
42 NativeZipStream::~NativeZipStream() {
45 void NativeZipStream::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len,
67 void NativeZipStream::setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) {
82 NativeZipStream* toNativeZipStream(jlong address) {
83 return reinterpret_cast<NativeZipStream*>(static_cast<uintptr_t>(address));

Completed in 103 milliseconds