HomeSort by relevance Sort by last modified time
    Searched refs:HttpUtil (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium/net/http/
http_util_icu.cc 16 std::string HttpUtil::PathForRequest(const GURL& url) {
24 std::string HttpUtil::SpecForRequest(const GURL& url) {
http_util_unittest.cc 11 using net::HttpUtil;
32 bool result = HttpUtil::HasHeader(tests[i].headers, tests[i].name);
56 HttpUtil::StripHeaders(headers, header_names,
63 HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\r\n");
83 HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\n");
99 HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\r\n");
110 HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\r\n");
124 HttpUtil::ValuesIterator it(values.begin(), values.end(), ',');
141 HttpUtil::ValuesIterator it(values.begin(), values.end(), ',');
148 EXPECT_STREQ("xyz\"abc", HttpUtil::Unquote("\"xyz\\\"abc\"").c_str())
    [all...]
http_util.cc 57 size_t HttpUtil::FindDelimiter(const string& line, size_t search_start,
90 void HttpUtil::ParseContentType(const string& content_type_str,
188 bool HttpUtil::ParseRanges(const std::string& headers,
191 HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\r\n");
274 bool HttpUtil::HasHeader(const std::string& headers, const char* name) {
297 std::string HttpUtil::StripHeaders(const std::string& headers,
301 net::HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\r\n");
322 bool HttpUtil::IsNonCoalescingHeader(string::const_iterator name_begin,
345 bool HttpUtil::IsLWS(char c) {
349 void HttpUtil::TrimLWS(string::const_iterator* begin
    [all...]
http_auth_handler_digest.cc 122 *path = HttpUtil::PathForRequest(url);
161 HttpUtil::Quote(username);
162 authorization += ", realm=" + HttpUtil::Quote(realm_);
163 authorization += ", nonce=" + HttpUtil::Quote(nonce_);
164 authorization += ", uri=" + HttpUtil::Quote(path);
171 // No need to call HttpUtil::Quote() as the response digest cannot contain
176 authorization += ", opaque=" + HttpUtil::Quote(opaque_);
182 authorization += ", cnonce=" + HttpUtil::Quote(cnonce);
271 HttpUtil::ValuesIterator qop_values(value.begin(), value.end(), ',');
http_auth.cc 102 props_ = HttpUtil::ValuesIterator(scheme_end_, end, ',');
125 if (HttpUtil::IsQuote(*it))
133 if (value_begin_ != value_end_ && HttpUtil::IsQuote(*value_begin_)) {
146 return HttpUtil::Unquote(value_begin_, value_end_);
http_response_headers.cc 296 HttpUtil::HeadersIterator headers(line_end + 1, raw_headers_.end(),
363 DCHECK(!HttpUtil::IsNonCoalescingHeader(name));
609 HttpUtil::IsNonCoalescingHeader(name_begin, name_end)) {
612 HttpUtil::ValuesIterator it(values_begin, values_end, ',');
711 HttpUtil::ParseContentType(value, mime_type, charset, &had_charset);
    [all...]
http_auth.h 154 HttpUtil::ValuesIterator props_;
http_auth_handler_ntlm.cc 120 HttpUtil::TrimLWS(&challenge_begin, &challenge_end);
http_vary_data.cc 108 HttpUtil::HeadersIterator it(request_info.extra_headers.begin(),
http_stream_parser.cc 430 response_header_start_offset_ = HttpUtil::LocateStartOfStatusLine(
436 end_offset = HttpUtil::LocateEndOfHeaders(
456 headers = new HttpResponseHeaders(HttpUtil::AssembleRawHeaders(
http_util.h 20 class HttpUtil {
http_auth_unittest.cc 78 net::HttpUtil::AssembleRawHeaders(
131 net::HttpUtil::AssembleRawHeaders(
http_auth_sspi_win.cc 63 HttpUtil::TrimLWS(&challenge_begin, &challenge_end);
partial_data.cc 28 if (!HttpUtil::ParseRanges(headers, &ranges) || ranges.size() != 1)
http_cache_transaction.cc 80 static bool HeaderMatches(const HttpUtil::HeadersIterator& h,
89 HttpUtil::ValuesIterator v(h.values_begin(), h.values_end(), ',');
793 HttpUtil::HeadersIterator it(request_->extra_headers.begin(),
    [all...]
http_cache_unittest.cc 732 if (!net::HttpUtil::ParseRanges(request->extra_headers, &ranges) ||
807 std::string raw_headers(net::HttpUtil::AssembleRawHeaders(response.data(),
    [all...]
http_network_transaction.cc 52 HttpUtil::SpecForRequest(request_info->url) :
53 HttpUtil::PathForRequest(request_info->url);
    [all...]
  /external/chromium/net/proxy/
proxy_server.cc 101 HttpUtil::TrimLWS(&begin, &end);
143 HttpUtil::TrimLWS(&begin, &end);
151 if (HttpUtil::IsLWS(*space)) {
202 HttpUtil::TrimLWS(&begin, &end);
  /external/chromium/net/websockets/
websocket.cc 219 int eoh = HttpUtil::LocateEndOfHeaders(p, len);
223 new HttpResponseHeaders(HttpUtil::AssembleRawHeaders(p, eoh)));
261 int eoh = HttpUtil::LocateEndOfHeaders(start, len);
265 new HttpResponseHeaders(HttpUtil::AssembleRawHeaders(start, eoh)));
websocket_throttle.cc 76 int eoh = HttpUtil::LocateEndOfHeaders(data, len, 0);
89 int eoh = HttpUtil::LocateEndOfHeaders(buffer_->StartOfBuffer(),
  /external/chromium/net/url_request/
url_request_http_job.cc 338 request_info_.extra_headers = net::HttpUtil::StripHeaders(
678 net::HttpUtil::AppendHeaderIfMissing("Accept-Language",
681 net::HttpUtil::AppendHeaderIfMissing("Accept-Charset",
url_request_file_job.cc 194 if (net::HttpUtil::ParseRanges(headers, &ranges)) {
url_request.cc 431 return net::HttpUtil::StripHeaders(
  /external/chromium/net/socket_stream/
socket_stream.cc 640 int eoh = HttpUtil::LocateEndOfHeaders(
654 HttpUtil::AssembleRawHeaders(tunnel_response_headers_->headers(), eoh));
  /external/chromium/net/flip/
flip_session.cc 134 HttpUtil::HeadersIterator it(info.extra_headers.begin(),
    [all...]

Completed in 294 milliseconds

1 2