HomeSort by relevance Sort by last modified time
    Searched refs:next_stream_data_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/filter/
gzip_filter.cc 153 if (!next_stream_data_ || stream_data_len_ <= 0)
158 header_status = gzip_header_->ReadMore(next_stream_data_, stream_data_len_,
164 next_stream_data_ = NULL;
171 (header_end - next_stream_data_));
175 next_stream_data_ = const_cast<char*>(header_end);
179 next_stream_data_ = NULL;
201 if (!next_stream_data_ || stream_data_len_ <= 0) { // input
207 zlib_stream_.get()->next_in = bit_cast<Bytef*>(next_stream_data_);
222 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
246 next_stream_data_ = NULL
    [all...]
sdch_filter.cc 276 next_stream_data_ = NULL;
292 if (!next_stream_data_ || stream_data_len_ <= 0)
296 next_stream_data_, stream_data_len_, &dest_buffer_excess_);
298 next_stream_data_ = NULL;
322 if (!next_stream_data_)
325 dictionary_hash_.append(next_stream_data_, stream_data_len_);
326 next_stream_data_ = NULL;
330 dictionary_hash_.append(next_stream_data_, bytes_needed);
335 next_stream_data_ += bytes_needed;
337 next_stream_data_ = NULL
    [all...]
filter.cc 132 next_stream_data_ = stream_buffer()->data();
322 next_stream_data_(NULL),
335 memcpy(dest_buffer, next_stream_data_, out_len);
339 next_stream_data_ = NULL;
342 next_stream_data_ += out_len;
filter.h 238 char* next_stream_data_; member in class:net::Filter

Completed in 172 milliseconds