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

  /external/chromium/net/tools/flip_server/
balsa_headers_token_utils.cc 20 const char* value_begin = stream_begin + header_line.value_begin_idx; local
24 ParseTokenList(value_begin, line_end, tokens);
balsa_frame.cc 628 const char* value_begin = (stream_begin + header_line.value_begin_idx); local
630 if (value_begin >= line_end) {
640 while (value_begin < line_end) {
641 if (*value_begin < '0' || *value_begin > '9') {
651 const unsigned char c = *value_begin - '0';
661 ++value_begin;
673 const char* value_begin = stream_begin + header_line.value_begin_idx; local
674 size_t value_length = line_end - value_begin;
677 !strncasecmp(value_begin, "chunked", 7))
    [all...]
  /external/chromium/net/http/
http_util.h 241 std::string::const_iterator value_begin() const { function in class:net::HttpUtil::ValuesIterator
285 std::string::const_iterator value_begin() const { function in class:net::HttpUtil::NameValuePairsIterator
http_response_headers.cc 126 std::string::const_iterator value_begin; member in struct:net::HttpResponseHeaders::ParsedHeader
402 std::string::const_iterator value_begin = parsed_[i].value_begin; local
408 headers[iter->second].append(value_begin, value_end);
438 std::string::const_iterator value_begin = parsed_[i].value_begin; local
442 value->append(value_begin, value_end);
475 std::string::const_iterator value_begin = parsed_[i].value_begin; local
480 value->assign(value_begin, value_end)
    [all...]

Completed in 231 milliseconds