HomeSort by relevance Sort by last modified time
    Searched full:zerror_ (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 51 : format_(format), sub_stream_(sub_stream), zerror_(Z_OK) {
73 zerror_ = inflateEnd(&zcontext_);
77 if ((zerror_ == Z_OK) && (zcontext_.avail_out == 0)) {
120 bool ok = (zerror_ == Z_OK) || (zerror_ == Z_STREAM_END)
121 || (zerror_ == Z_BUF_ERROR);
129 if (zerror_ == Z_STREAM_END) {
134 zerror_ = Inflate(Z_NO_FLUSH);
135 if ((zerror_ == Z_STREAM_END) && (zcontext_.next_out == NULL)) {
139 ok = (zerror_ == Z_OK) || (zerror_ == Z_STREAM_END
    [all...]
gzip_stream.h 81 return zerror_;
96 int zerror_; member in class:google::protobuf::io::GzipInputStream
160 return zerror_;
188 int zerror_; member in class:google::protobuf::io::GzipOutputStream

Completed in 792 milliseconds