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

  /external/chromium/net/http/
http_response_headers.h 29 // Parses the given raw_headers. raw_headers should be formatted thus:
35 // NOTE: For now, raw_headers is not really 'raw' in that this constructor is
40 explicit HttpResponseHeaders(const std::string& raw_headers);
239 const std::string& raw_headers() const { return raw_headers_; } function in class:net::HttpResponseHeaders
287 // Replaces the current headers with the merged version of |raw_headers| and
291 void MergeWithHeaders(const std::string& raw_headers,
http_response_headers_unittest.cc 21 const char* raw_headers; member in struct:__anon2652::TestData
29 const string raw_headers; member in struct:__anon2652::ContentTypeTestData
49 string raw_headers(test.raw_headers);
50 HeadersToRaw(&raw_headers);
55 new HttpResponseHeaders(raw_headers);
294 const char* raw_headers; member in struct:__anon2653
449 std::string headers = tests[i].raw_headers;
657 string headers(tests[i].raw_headers);
    [all...]
http_util.cc 506 std::string raw_headers; local
507 raw_headers.reserve(input_len);
519 raw_headers.append(input_begin, status_line_end);
537 raw_headers.push_back(' ');
538 raw_headers.append(FindFirstNonLWS(line_begin, line_end), line_end);
541 raw_headers.push_back('\0');
544 raw_headers.append(line_begin, line_end);
551 raw_headers.append("\0\0", 2);
552 return raw_headers;

Completed in 534 milliseconds