Home
last modified time | relevance | path

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

/external/chromium/net/base/
Dgzip_filter.cc158 if (!next_stream_data_ || stream_data_len_ <= 0) in CheckGZipHeader()
163 header_status = gzip_header_->ReadMore(next_stream_data_, stream_data_len_, in CheckGZipHeader()
169 next_stream_data_ = NULL; in CheckGZipHeader()
176 (header_end - next_stream_data_)); in CheckGZipHeader()
180 next_stream_data_ = const_cast<char*>(header_end); in CheckGZipHeader()
184 next_stream_data_ = NULL; in CheckGZipHeader()
206 if (!next_stream_data_ || stream_data_len_ <= 0) { // input in DoInflate()
212 zlib_stream_.get()->next_in = bit_cast<Bytef*>(next_stream_data_); in DoInflate()
227 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in); in DoInflate()
251 next_stream_data_ = NULL; in DoInflate()
[all …]
Dsdch_filter.cc272 next_stream_data_ = NULL; in ReadFilteredData()
288 if (!next_stream_data_ || stream_data_len_ <= 0) in ReadFilteredData()
292 next_stream_data_, stream_data_len_, &dest_buffer_excess_); in ReadFilteredData()
294 next_stream_data_ = NULL; in ReadFilteredData()
318 if (!next_stream_data_) in InitializeDictionary()
321 dictionary_hash_.append(next_stream_data_, stream_data_len_); in InitializeDictionary()
322 next_stream_data_ = NULL; in InitializeDictionary()
326 dictionary_hash_.append(next_stream_data_, bytes_needed); in InitializeDictionary()
331 next_stream_data_ += bytes_needed; in InitializeDictionary()
333 next_stream_data_ = NULL; in InitializeDictionary()
Dfilter.cc135 next_stream_data_ = stream_buffer()->data(); in FlushStreamBuffer()
322 next_stream_data_(NULL), in Filter()
337 memcpy(dest_buffer, next_stream_data_, out_len); in CopyOut()
341 next_stream_data_ = NULL; in CopyOut()
344 next_stream_data_ += out_len; in CopyOut()
Dfilter.h230 char* next_stream_data_; variable