Searched refs:headers (Results 201 - 225 of 974) sorted by relevance

1234567891011>>

/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_tamper_detection.h13 // Chrome-Proxy response headers;
24 // 3. Fingerprint of a list of headers, which is designed to check whether the
25 // values of a list of headers (list is defined by the data reduction proxy)
70 static bool DetectAndReport(const net::HttpResponseHeaders* headers,
117 // Returns the result of validating a list of headers.
120 // Reports UMA for tampering of values of the list of headers.
136 // Returns all the values of |header_name| of the response |headers| as a
139 const net::HttpResponseHeaders* headers,
142 // Pointer to response headers.
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache.cc196 scoped_ptr<ServiceWorkerRequestResponseHeaders> headers);
217 // Copy headers out of a cache entry and into a protobuf. The callback is
247 ServiceWorkerRequestResponseHeaders headers; local
248 headers.set_method(request->method);
250 headers.set_status_code(response->status_code);
251 headers.set_status_text(response->status_text);
252 for (ServiceWorkerHeaderMap::const_iterator it = request->headers.begin();
253 it != request->headers.end();
256 headers.add_request_headers();
261 for (ServiceWorkerHeaderMap::const_iterator it = response->headers
411 MatchDidReadHeaderData( scoped_ptr<ServiceWorkerFetchRequest> request, const ServiceWorkerCache::ResponseCallback& callback, base::WeakPtr<storage::BlobStorageContext> blob_storage, disk_cache::ScopedEntryPtr entry, scoped_ptr<ServiceWorkerRequestResponseHeaders> headers) argument
940 KeysDidReadHeaders( scoped_ptr<KeysContext> keys_context, const Entries::iterator& iter, scoped_ptr<ServiceWorkerRequestResponseHeaders> headers) argument
[all...]
H A Dservice_worker_read_from_cache_job.cc50 // Create a response reader and start reading the headers,
83 return http_info()->headers->GetCharset(charset);
89 return http_info()->headers->GetMimeType(mime_type);
102 return http_info()->headers->response_code();
106 const net::HttpRequestHeaders& headers) {
109 if (!headers.GetHeader(net::HttpRequestHeaders::kRange, &value) ||
183 // Make a copy of the full response headers and fix them up
186 net::HttpResponseHeaders* headers = range_response_info_->headers.get(); local
187 headers
105 SetExtraRequestHeaders( const net::HttpRequestHeaders& headers) argument
[all...]
/external/chromium_org/content/common/
H A Dwebsocket_messages.h35 IPC_STRUCT_TRAITS_MEMBER(headers)
44 IPC_STRUCT_TRAITS_MEMBER(headers)
/external/chromium_org/net/http/
H A Dhttp_auth.h39 // What the HTTP WWW-Authenticate/Proxy-Authenticate headers indicate about
52 AUTHORIZATION_RESULT_INVALID, // The authentication challenge headers are
125 // Iterate through the challenge headers, and pick the best one that
136 const HttpResponseHeaders* headers,
153 // |headers| must be non-NULL and contain the new HTTP response.
161 // support of the returned AuthorizationResult. If no headers were used for
162 // the result (for example, all headers have unknown authentication schemes),
166 const HttpResponseHeaders* headers,
H A Dhttp_auth.cc27 const HttpResponseHeaders* headers,
41 while (headers->EnumerateHeader(&iter, header_name, &cur_challenge)) {
60 const HttpResponseHeaders* headers,
65 DCHECK(headers);
77 while (headers->EnumerateHeader(&iter, header_name, &challenge)) {
25 ChooseBestChallenge( HttpAuthHandlerFactory* http_auth_handler_factory, const HttpResponseHeaders* headers, Target target, const GURL& origin, const std::set<Scheme>& disabled_schemes, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
58 HandleChallengeResponse( HttpAuthHandler* handler, const HttpResponseHeaders* headers, Target target, const std::set<Scheme>& disabled_schemes, std::string* challenge_used) argument
/external/chromium_org/net/spdy/
H A Dbuffered_spdy_framer.h43 const SpdyHeaderBlock& headers) = 0;
48 const SpdyHeaderBlock& headers) = 0;
53 const SpdyHeaderBlock& headers) = 0;
104 const SpdyHeaderBlock& headers) = 0;
186 const SpdyHeaderBlock* headers);
189 const SpdyHeaderBlock* headers);
199 const SpdyHeaderBlock* headers);
209 const SpdyHeaderBlock* headers);
H A Dhpack_huffman_aggregator_test.cc52 const HttpResponseHeaders& headers,
55 headers, headers_out);
195 SpdyHeaderBlock headers; local
196 peer_.CreateSpdyHeadersFromHttpResponse(*parsed_headers, &headers);
197 EXPECT_THAT(headers, ElementsAre(
51 CreateSpdyHeadersFromHttpResponse( const HttpResponseHeaders& headers, SpdyHeaderBlock* headers_out) argument
/external/chromium_org/net/spdy/fuzzing/
H A Dhpack_example_generator.cc61 map<string, string> headers = local
65 CHECK(encoder.EncodeHeaderSet(headers, &buffer));
/external/chromium_org/net/tools/quic/
H A Dquic_spdy_client_stream.h37 // Override the base class to store the size of the headers.
46 // Serializes the headers and body, sends it to the server, and
48 ssize_t SendRequest(const BalsaHeaders& headers,
58 // Returns whatever headers have been received for this stream.
59 const BalsaHeaders& headers() { return headers_; } function in class:net::tools::QuicSpdyClientStream
/external/chromium_org/net/url_request/
H A Durl_request_test_job.cc72 // static getter for simple response headers
81 // static getter for redirect response headers
90 // static getter for redirect response headers
92 std::string headers = "HTTP/1.1 302 MOVED"; local
93 headers.push_back('\0');
94 headers += "Location: ";
95 headers += test_url_2().spec();
96 headers.push_back('\0');
97 headers.push_back('\0');
98 return headers;
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_handshake_handler.h45 // Removes the headers that matches (case insensitive).
55 SpdyHeaderBlock* headers,
91 bool ParseResponseHeaderBlock(const SpdyHeaderBlock& headers,
95 // Gets the headers value.
99 // Removes the headers that matches (case insensitive).
/external/chromium_org/remoting/webapp/
H A Dxhr_proxy.js32 * @type {{headers: Object}}
35 headers: {}
64 this.sandbox_ipc.headers[header] = value;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableCellElement.idl30 [Reflect, TreatNullAs=NullString] attribute DOMString headers;
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DResponse.cpp37 Headers* headers = Headers::create(); local
39 for (HTTPHeaderMap::const_iterator i = webResponse.headers().begin(), end = webResponse.headers().end(); i != end; ++i) {
40 headers->append(i->key, i->value, exceptionState);
44 return headers;
106 // "6. If |init|'s headers member is present, run these substeps:"
107 if (responseInit.headers) {
110 // "2. Fill |r|'s Headers object with |init|'s headers member. Rethrow
112 r->m_headers->fillWith(responseInit.headers.get(), exceptionState);
118 // "2. Fill |r|'s Headers object with |init|'s headers membe
207 Headers* Response::headers() const function in class:blink::Response
[all...]
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dnanohttp.h36 const char *headers,
44 const char *headers,
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dpacket.h44 // RTP headers, and no payload (a.k.a RTP dummy files or RTP light). The
67 // Parses the first bytes of the RTP payload, interpreting them as RED headers
68 // according to RFC 2198. The headers will be inserted into |headers|. The
71 bool ExtractRedHeaders(std::list<RTPHeader*>* headers) const;
73 // Deletes all RTPHeader objects in |headers|, but does not delete |headers|
75 static void DeleteRedHeaders(std::list<RTPHeader*>* headers);
/external/libxml2/include/libxml/
H A Dnanohttp.h36 const char *headers,
44 const char *headers,
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java40 getHeaders().addAll(http.headers);
41 for (Map.Entry<String, String> header : http.headers) {
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java68 this.headers.addAll(in.headers);
/external/stlport/
H A Dlibstlport.mk4 # keep the RTTI stuff in abi/cpp/include in front of our STL headers.
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DJavaApiConverter.java62 // A connected HttpURLConnection does not permit access to request headers.
71 // Response headers
73 okResponseBuilder.headers(okHeaders);
115 // Status line: Java has this as one of the headers.
118 // Response headers
120 okResponseBuilder.headers(okHeaders);
156 * where a connection is already connected and access to the headers has been lost.
167 Headers headers = extractOkHeaders(requestHeaders);
168 builder.headers(headers);
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractMessageParser.java89 * Parses HTTP headers from the data receiver stream according to the generic
93 * @param maxHeaderCount maximum number of headers allowed. If the number
94 * of headers received from the data stream exceeds maxCount value, an
99 * @return array of HTTP headers
132 // Check for folded headers first
134 // discussion on folded headers
161 Header[] headers = new Header[headerLines.size()];
165 headers[i] = parser.parseHeader(buffer);
170 return headers;
183 Header[] headers
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpatch_servlet_test.py77 patched_response.headers.pop(header, None)
78 unpatched_response.headers.pop(header, None)
91 self.assertEqual(patched_response.headers, unpatched_response.headers)
122 response.headers['Location'])
/external/chromium_org/content/browser/
H A Dtransition_request_manager.cc19 // Enumerate all Link: headers with the specified relation in this
23 const scoped_refptr<net::HttpResponseHeaders>& headers,
30 while (!rel_matched && headers->EnumerateHeader(iter, "link", &header_body)) {
86 const scoped_refptr<net::HttpResponseHeaders>& headers,
89 if (headers.get() == NULL)
95 while (EnumerateLinkHeaders(headers,
22 EnumerateLinkHeaders( const scoped_refptr<net::HttpResponseHeaders>& headers, void** iter, const std::string& rel, std::string* url, base::StringPairs* attributes) argument
85 ParseTransitionStylesheetsFromHeaders( const scoped_refptr<net::HttpResponseHeaders>& headers, std::vector<GURL>& entering_stylesheets, const GURL& resolve_address) argument

Completed in 1284 milliseconds

1234567891011>>