Home
last modified time | relevance | path

Searched refs:HttpResponseHeaders (Results 1 – 25 of 65) sorted by relevance

123

/external/chromium/net/http/
Dhttp_response_headers_unittest.cc49 scoped_refptr<net::HttpResponseHeaders> parsed( in TestCommon()
50 new net::HttpResponseHeaders(raw_headers)); in TestCommon()
279 scoped_refptr<net::HttpResponseHeaders> parsed( in TEST()
280 new net::HttpResponseHeaders(headers)); in TEST()
289 net::HttpResponseHeaders::PersistOptions options; in TEST()
293 { net::HttpResponseHeaders::PERSIST_ALL, in TEST()
301 { net::HttpResponseHeaders::PERSIST_SANS_HOP_BY_HOP, in TEST()
309 { net::HttpResponseHeaders::PERSIST_SANS_NON_CACHEABLE | in TEST()
310 net::HttpResponseHeaders::PERSIST_SANS_HOP_BY_HOP, in TEST()
321 { net::HttpResponseHeaders::PERSIST_SANS_NON_CACHEABLE, in TEST()
[all …]
Dhttp_response_headers.cc119 struct HttpResponseHeaders::ParsedHeader {
132 HttpResponseHeaders::HttpResponseHeaders(const std::string& raw_input) in HttpResponseHeaders() function in net::HttpResponseHeaders
154 HttpResponseHeaders::HttpResponseHeaders(const Pickle& pickle, void** iter) in HttpResponseHeaders() function in net::HttpResponseHeaders
161 void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) { in Persist()
217 void HttpResponseHeaders::Update(const HttpResponseHeaders& new_headers) { in Update()
261 void HttpResponseHeaders::MergeWithHeaders(const std::string& raw_headers, in MergeWithHeaders()
290 void HttpResponseHeaders::RemoveHeader(const std::string& name) { in RemoveHeader()
302 void HttpResponseHeaders::AddHeader(const std::string& header) { in AddHeader()
317 void HttpResponseHeaders::ReplaceStatusLine(const std::string& new_status) { in ReplaceStatusLine()
326 void HttpResponseHeaders::Parse(const std::string& raw_input) { in Parse()
[all …]
Dhttp_response_headers.h28 class NET_EXPORT HttpResponseHeaders
29 : public base::RefCountedThreadSafe<HttpResponseHeaders> {
52 explicit HttpResponseHeaders(const std::string& raw_headers);
57 HttpResponseHeaders(const Pickle& pickle, void** pickle_iter);
64 void Update(const HttpResponseHeaders& new_headers);
250 friend class base::RefCountedThreadSafe<HttpResponseHeaders>;
258 HttpResponseHeaders();
259 ~HttpResponseHeaders();
345 DISALLOW_COPY_AND_ASSIGN(HttpResponseHeaders);
Dpartial_data.h20 class HttpResponseHeaders; variable
75 bool UpdateFromStoredHeaders(const HttpResponseHeaders* headers,
85 bool ResponseHeadersOK(const HttpResponseHeaders* headers);
90 void FixResponseHeaders(HttpResponseHeaders* headers, bool success);
93 void FixContentLength(HttpResponseHeaders* headers);
Dhttp_response_info.cc133 headers = new HttpResponseHeaders(pickle, &iter); in InitFromPickle()
213 net::HttpResponseHeaders::PersistOptions persist_options = in Persist()
214 net::HttpResponseHeaders::PERSIST_RAW; in Persist()
218 net::HttpResponseHeaders::PERSIST_SANS_COOKIES | in Persist()
219 net::HttpResponseHeaders::PERSIST_SANS_CHALLENGES | in Persist()
220 net::HttpResponseHeaders::PERSIST_SANS_HOP_BY_HOP | in Persist()
221 net::HttpResponseHeaders::PERSIST_SANS_NON_CACHEABLE | in Persist()
222 net::HttpResponseHeaders::PERSIST_SANS_RANGES; in Persist()
Dhttp_net_log_params.h20 class HttpResponseHeaders; variable
50 const scoped_refptr<HttpResponseHeaders>& headers);
52 const HttpResponseHeaders& GetHeaders() const { in GetHeaders()
62 const scoped_refptr<HttpResponseHeaders> headers_;
Dhttp_vary_data.h16 class HttpResponseHeaders; variable
45 const HttpResponseHeaders& response_headers);
64 const HttpResponseHeaders& cached_response_headers) const;
Dhttp_auth.h23 class HttpResponseHeaders; variable
136 const HttpResponseHeaders* headers,
166 const HttpResponseHeaders* headers,
Dhttp_response_info.h20 class HttpResponseHeaders; variable
92 scoped_refptr<HttpResponseHeaders> headers;
Dhttp_auth_controller_unittest.cc54 scoped_refptr<HttpResponseHeaders> headers( in RunSingleRoundAuthTest()
55 new HttpResponseHeaders(headers_string)); in RunSingleRoundAuthTest()
Dhttp_vary_data.cc22 const HttpResponseHeaders& response_headers) { in Init()
84 const HttpResponseHeaders& cached_response_headers) const { in MatchesRequest()
Dpartial_data.cc239 bool PartialData::UpdateFromStoredHeaders(const HttpResponseHeaders* headers, in UpdateFromStoredHeaders()
319 bool PartialData::ResponseHeadersOK(const HttpResponseHeaders* headers) { in ResponseHeadersOK()
369 void PartialData::FixResponseHeaders(HttpResponseHeaders* headers, in FixResponseHeaders()
410 void PartialData::FixContentLength(HttpResponseHeaders* headers) { in FixContentLength()
Dhttp_auth.cc26 const HttpResponseHeaders* headers, in ChooseBestChallenge()
59 const HttpResponseHeaders* headers, in HandleChallengeResponse()
Dhttp_vary_data_unittest.cc18 scoped_refptr<net::HttpResponseHeaders> response;
24 response = new net::HttpResponseHeaders(temp); in Init()
/external/chromium/net/url_request/
Durl_request_throttler_header_adapter.h16 class HttpResponseHeaders; variable
22 explicit URLRequestThrottlerHeaderAdapter(HttpResponseHeaders* headers);
30 const scoped_refptr<HttpResponseHeaders> response_header_;
Durl_request_throttler_header_adapter.cc12 HttpResponseHeaders* headers) in URLRequestThrottlerHeaderAdapter()
/external/chromium/net/websockets/
Dwebsocket_handshake.h17 class HttpResponseHeaders; variable
55 static bool GetSingleHeader(const HttpResponseHeaders& headers,
108 virtual bool ProcessHeaders(const HttpResponseHeaders& headers);
Dwebsocket_handshake_draft75.h17 class HttpResponseHeaders; variable
51 virtual bool ProcessHeaders(const HttpResponseHeaders& headers);
Dwebsocket_handshake_draft75.cc106 scoped_refptr<HttpResponseHeaders> headers( in ReadServerHandshake()
107 new HttpResponseHeaders(HttpUtil::AssembleRawHeaders(data, eoh))); in ReadServerHandshake()
128 const HttpResponseHeaders& headers) { in ProcessHeaders()
Dwebsocket_handshake.cc91 scoped_refptr<HttpResponseHeaders> headers( in ReadServerHandshake()
92 new HttpResponseHeaders(HttpUtil::AssembleRawHeaders(data, eoh))); in ReadServerHandshake()
157 bool WebSocketHandshake::GetSingleHeader(const HttpResponseHeaders& headers, in GetSingleHeader()
174 bool WebSocketHandshake::ProcessHeaders(const HttpResponseHeaders& headers) { in ProcessHeaders()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DCacheResult.h54 net::HttpResponseHeaders* responseHeaders() const;
66 scoped_refptr<net::HttpResponseHeaders> m_responseHeaders;
/external/chromium/chrome/browser/automation/
Durl_request_automation_job.h19 class HttpResponseHeaders; variable
106 scoped_refptr<net::HttpResponseHeaders> headers_;
/external/chromium/chrome/common/net/
Durl_fetcher.h29 class HttpResponseHeaders; variable
203 virtual net::HttpResponseHeaders* response_headers() const;
/external/chromium/webkit/glue/
Dresource_loader_bridge.h39 class HttpResponseHeaders; variable
128 scoped_refptr<net::HttpResponseHeaders> headers;
/external/chromium/chrome/browser/prerender/
Dprerender_resource_handler_unittest.cc70 net::HttpResponseHeaders* CreateResponseHeaders( in CreateResponseHeaders()
80 return new net::HttpResponseHeaders(headers); in CreateResponseHeaders()

123