Home
last modified time | relevance | path

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

/system/core/libziparchive/
Dzip_archive.cc887 z_stream zstream; in InflateEntryToWriter() local
893 memset(&zstream, 0, sizeof(zstream)); in InflateEntryToWriter()
894 zstream.zalloc = Z_NULL; in InflateEntryToWriter()
895 zstream.zfree = Z_NULL; in InflateEntryToWriter()
896 zstream.opaque = Z_NULL; in InflateEntryToWriter()
897 zstream.next_in = NULL; in InflateEntryToWriter()
898 zstream.avail_in = 0; in InflateEntryToWriter()
899 zstream.next_out = &write_buf[0]; in InflateEntryToWriter()
900 zstream.avail_out = kBufSize; in InflateEntryToWriter()
901 zstream.data_type = Z_UNKNOWN; in InflateEntryToWriter()
[all …]