Home
last modified time | relevance | path

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

/external/chromium/net/http/
Dhttp_stream_parser.cc26 response_body_length_(-1), in HttpStreamParser()
309 if (response_body_length_ == 0) { in DoReadHeadersComplete()
390 } else if (response_body_length_ >= 0) { in DoReadBodyComplete()
391 int64 extra_data_read = response_body_read_ - response_body_length_; in DoReadBodyComplete()
486 response_body_length_ = 0; in CalculateResponseBodySize()
490 response_body_length_ = 0; in CalculateResponseBodySize()
492 if (response_body_length_ == -1) { in CalculateResponseBodySize()
500 response_body_length_ = response_->headers->GetContentLength(); in CalculateResponseBodySize()
521 if (response_body_length_ != -1) in IsResponseBodyComplete()
522 return response_body_read_ >= response_body_length_; in IsResponseBodyComplete()
[all …]
Dhttp_stream_parser.h140 int64 response_body_length_; variable