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

/frameworks/base/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.cpp579 z_stream zstream; local
585 memset(&zstream, 0, sizeof(zstream));
586 zstream.zalloc = Z_NULL;
587 zstream.zfree = Z_NULL;
588 zstream.opaque = Z_NULL;
589 zstream.next_in = (Bytef*)inBuf;
590 zstream.avail_in = compLen;
591 zstream.next_out = (Bytef*) outBuf;
592 zstream
646 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 96 milliseconds