OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NativeZipStream
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/native/
ZipUtilities.cpp
24
NativeZipStream
* stream) {
34
NativeZipStream
::
NativeZipStream
() : input(NULL), inCap(0), mDict(NULL) {
41
NativeZipStream
::~
NativeZipStream
() {
44
void
NativeZipStream
::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len,
66
void
NativeZipStream
::setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) {
81
NativeZipStream
* toNativeZipStream(jlong address) {
82
return reinterpret_cast<
NativeZipStream
*>(static_cast<uintptr_t>(address));
ZipUtilities.h
25
class
NativeZipStream
{
31
NativeZipStream
();
32
~
NativeZipStream
();
40
NativeZipStream
(const
NativeZipStream
&);
41
void operator=(const
NativeZipStream
&);
44
NativeZipStream
* toNativeZipStream(jlong address);
47
NativeZipStream
* stream);
Completed in 441 milliseconds