Searched refs:zstream (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/utils/
H A DZipUtils.cpp48 z_stream zstream; local
63 memset(&zstream, 0, sizeof(zstream));
64 zstream.zalloc = Z_NULL;
65 zstream.zfree = Z_NULL;
66 zstream.opaque = Z_NULL;
67 zstream.next_in = NULL;
68 zstream.avail_in = 0;
69 zstream.next_out = (Bytef*) buf;
70 zstream
160 z_stream zstream; local
[all...]
H A DZipFileRO.cpp786 z_stream zstream; local
792 memset(&zstream, 0, sizeof(zstream));
793 zstream.zalloc = Z_NULL;
794 zstream.zfree = Z_NULL;
795 zstream.opaque = Z_NULL;
796 zstream.next_in = (Bytef*)inBuf;
797 zstream.avail_in = compLen;
798 zstream.next_out = (Bytef*) outBuf;
799 zstream
853 z_stream zstream; local
[all...]
/frameworks/base/tools/aapt/
H A DZipFile.cpp750 z_stream zstream; local
768 memset(&zstream, 0, sizeof(zstream));
769 zstream.zalloc = Z_NULL;
770 zstream.zfree = Z_NULL;
771 zstream.opaque = Z_NULL;
772 zstream.next_in = NULL;
773 zstream.avail_in = 0;
774 zstream.next_out = outBuf;
775 zstream
[all...]

Completed in 55 milliseconds