Home
last modified time | relevance | path

Searched refs:content_range_spec (Results 1 – 3 of 3) sorted by relevance

/external/cronet/net/http/
Dhttp_util.cc218 base::StringPiece content_range_spec, in ParseContentRangeHeaderFor206() argument
223 content_range_spec = TrimLWS(content_range_spec); in ParseContentRangeHeaderFor206()
225 size_t space_position = content_range_spec.find(' '); in ParseContentRangeHeaderFor206()
231 TrimLWS(content_range_spec.substr(0, space_position)), "bytes")) { in ParseContentRangeHeaderFor206()
235 size_t minus_position = content_range_spec.find('-', space_position + 1); in ParseContentRangeHeaderFor206()
238 size_t slash_position = content_range_spec.find('/', minus_position + 1); in ParseContentRangeHeaderFor206()
243 TrimLWS(content_range_spec.substr( in ParseContentRangeHeaderFor206()
248 TrimLWS(content_range_spec.substr( in ParseContentRangeHeaderFor206()
253 TrimLWS(content_range_spec.substr(slash_position + 1)), in ParseContentRangeHeaderFor206()
Dhttp_util.h76 base::StringPiece content_range_spec,
Dhttp_response_headers.cc1361 std::string content_range_spec; in GetContentRangeFor206() local
1362 if (!EnumerateHeader(&iter, kContentRange, &content_range_spec)) { in GetContentRangeFor206()
1368 content_range_spec, first_byte_position, last_byte_position, in GetContentRangeFor206()