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.cpp805 z_stream zstream; local
811 memset(&zstream, 0, sizeof(zstream));
812 zstream.zalloc = Z_NULL;
813 zstream.zfree = Z_NULL;
814 zstream.opaque = Z_NULL;
815 zstream.next_in = (Bytef*)inBuf;
816 zstream.avail_in = compLen;
817 zstream.next_out = (Bytef*) outBuf;
818 zstream
872 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 506 milliseconds