Home
last modified time | relevance | path

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

/frameworks/native/libs/utils/
DZipUtils.cpp48 z_stream zstream; in inflateToBuffer() local
63 memset(&zstream, 0, sizeof(zstream)); in inflateToBuffer()
64 zstream.zalloc = Z_NULL; in inflateToBuffer()
65 zstream.zfree = Z_NULL; in inflateToBuffer()
66 zstream.opaque = Z_NULL; in inflateToBuffer()
67 zstream.next_in = NULL; in inflateToBuffer()
68 zstream.avail_in = 0; in inflateToBuffer()
69 zstream.next_out = (Bytef*) buf; in inflateToBuffer()
70 zstream.avail_out = uncompressedLen; in inflateToBuffer()
71 zstream.data_type = Z_UNKNOWN; in inflateToBuffer()
[all …]
DZipFileRO.cpp786 z_stream zstream; in inflateBuffer() local
792 memset(&zstream, 0, sizeof(zstream)); in inflateBuffer()
793 zstream.zalloc = Z_NULL; in inflateBuffer()
794 zstream.zfree = Z_NULL; in inflateBuffer()
795 zstream.opaque = Z_NULL; in inflateBuffer()
796 zstream.next_in = (Bytef*)inBuf; in inflateBuffer()
797 zstream.avail_in = compLen; in inflateBuffer()
798 zstream.next_out = (Bytef*) outBuf; in inflateBuffer()
799 zstream.avail_out = uncompLen; in inflateBuffer()
800 zstream.data_type = Z_UNKNOWN; in inflateBuffer()
[all …]
/frameworks/base/tools/aapt/
DZipFile.cpp750 z_stream zstream; in compressFpToFp() local
768 memset(&zstream, 0, sizeof(zstream)); in compressFpToFp()
769 zstream.zalloc = Z_NULL; in compressFpToFp()
770 zstream.zfree = Z_NULL; in compressFpToFp()
771 zstream.opaque = Z_NULL; in compressFpToFp()
772 zstream.next_in = NULL; in compressFpToFp()
773 zstream.avail_in = 0; in compressFpToFp()
774 zstream.next_out = outBuf; in compressFpToFp()
775 zstream.avail_out = kBufSize; in compressFpToFp()
776 zstream.data_type = Z_UNKNOWN; in compressFpToFp()
[all …]