Home | History | Annotate | Download | only in runtime

Lines Matching full:zstream_

152     memset(&zstream_, 0, sizeof(zstream_));
153 zstream_.zalloc = Z_NULL;
154 zstream_.zfree = Z_NULL;
155 zstream_.opaque = Z_NULL;
156 zstream_.next_in = NULL;
157 zstream_.avail_in = 0;
158 zstream_.next_out = reinterpret_cast<Bytef*>(write_buf);
159 zstream_.avail_out = write_buf_size;
160 zstream_.data_type = Z_UNKNOWN;
164 return zstream_;
168 inflateEnd(&zstream_);
171 z_stream zstream_;