Searched refs:headers (Results 151 - 175 of 369) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dindex.php63 * @param array $extraHeaders (optional) Array of headers.
64 * @param bool $returnResponseHeaders True if resp headers should be returned.
76 // Return request headers in the response.
79 // Return response headers in the response?
84 $headers = array($request->to_header()); variable
86 $headers = array_merge($headers, $extraHeaders); variable
88 curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
96 // Add server's response headers to our response body
/external/chromium/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_basic_stream.cc41 int HttpBasicStream::SendRequest(const HttpRequestHeaders& headers, argument
53 return parser_->SendRequest(request_line_, headers, request_body, response,
H A Dhttp_util.h53 // Scans the headers and look for the first "Range" header in |headers|,
59 static bool ParseRanges(const std::string& headers,
67 // Scans the '\r\n'-delimited headers for the given header name. Returns
70 static bool HasHeader(const std::string& headers, const char* name);
72 // Strips all header lines from |headers| whose name matches
76 static std::string StripHeaders(const std::string& headers,
80 // Multiple occurances of some headers cannot be coalesced into a comma-
120 // Returns index beyond the end-of-headers marker or -1 if not found. RFC
121 // 2616 defines the end-of-headers marke
[all...]
H A Dhttp_network_transaction_unittest.cc175 EXPECT_TRUE(response->headers != NULL);
176 out.status_line = response->headers->GetStatusLine();
610 // Check that the headers got parsed.
611 EXPECT_TRUE(response->headers != NULL);
612 EXPECT_EQ(1234, response->headers->GetContentLength());
613 EXPECT_EQ("HTTP/1.1 404 Not Found", response->headers->GetStatusLine());
617 bool has_server_header = response->headers->EnumerateHeader(
667 EXPECT_TRUE(response->headers != NULL);
668 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine());
709 EXPECT_TRUE(response->headers !
[all...]
/external/clang/
H A Dclang-host-build.mk11 # Make sure bionic is first so we can include system headers.
/external/icu4c/tools/ctestfw/
H A Dtestdata.cpp53 RBTestData::RBTestData(UResourceBundle *data, UResourceBundle *headers, UErrorCode& status) argument
56 fHeaders(headers),
/external/icu4c/tools/ctestfw/unicode/
H A Ddatamap.h114 RBDataMap(UResourceBundle *headers, UResourceBundle *data, UErrorCode &status);
118 void init(UResourceBundle *headers, UResourceBundle *data, UErrorCode &status);
H A Dtestdata.h24 * number of entries in headers. Default headers can be specified in
25 * the TestDataModule info section. The default headers will be overriden
26 * by per-test headers.
95 RBTestData(UResourceBundle *data, UResourceBundle *headers, UErrorCode& status);
/external/llvm/
H A Dllvm-host-build.mk38 # Make sure bionic is first so we can include system headers.
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPlugin.h106 uint32_t lastModifiedTime, const String& mimeType, const String& headers) = 0;
119 uint32_t lastModifiedTime, const String& mimeType, const String& headers) = 0;
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleManager.cpp175 // called with data after all headers have been processed via headerCallback
460 void ResourceHandleManager::setupPOST(ResourceHandle* job, struct curl_slist** headers) argument
526 *headers = curl_slist_append(*headers, "Transfer-Encoding: chunked");
701 struct curl_slist* headers = 0; local
712 headers = curl_slist_append(headers, headerLatin1.data());
719 setupPOST(job, &headers);
721 setupPUT(job, &headers);
725 if (headers) {
[all...]
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPMessage.java138 * unparsed headers
143 * List of parsed headers (in the order they were added)
145 protected ConcurrentLinkedQueue<SIPHeader> headers; field in class:SIPMessage
148 * Direct accessors for frequently accessed headers
162 // Cumulative size of all the headers.
172 // Table of headers indexed by name.
211 * Get the headers as a linked list of encoded Strings
218 Iterator<SIPHeader> li = headers.iterator();
235 * @return a string with all the headers encoded.
239 Iterator<SIPHeader> it = this.headers
601 setHeaders(java.util.List<SIPHeader> headers) argument
[all...]
/external/chromium/chrome/browser/net/
H A Dchrome_network_delegate.h47 net::HttpRequestHeaders* headers);
/external/chromium/net/tools/flip_server/
H A Dbalsa_visitor_interface.h66 // Since the BalsaFrame already has to parse the headers in order to
69 // that purpose-- parsed headers are passed into this function.
71 // headers - contains the parsed headers in the order in which
73 virtual void ProcessHeaders(const BalsaHeaders& headers) = 0;
/external/chromium/net/url_request/
H A Durl_request_file_job.h44 virtual void SetExtraRequestHeaders(const HttpRequestHeaders& headers);
H A Durl_request_unittest.cc798 path = path.Append(FILE_PATH_LITERAL("with-headers.html"));
972 HttpRequestHeaders headers; local
973 headers.SetHeader(HttpRequestHeaders::kRange,
977 r.SetExtraRequestHeaders(headers);
1016 HttpRequestHeaders headers; local
1017 headers.SetHeader(HttpRequestHeaders::kRange,
1020 r.SetExtraRequestHeaders(headers);
1053 HttpRequestHeaders headers; local
1054 headers.SetHeader(HttpRequestHeaders::kRange,
1056 r.SetExtraRequestHeaders(headers);
1088 const HttpResponseHeaders* headers = req.response_headers(); local
1379 HttpRequestHeaders headers; local
1391 HttpRequestHeaders headers; local
1405 HttpRequestHeaders headers; local
1906 HttpRequestHeaders headers; local
1947 HttpRequestHeaders headers; local
2810 HttpRequestHeaders headers; local
2856 HttpRequestHeaders headers; local
2885 HttpRequestHeaders headers; local
[all...]
/external/protobuf/
H A Dconfigure.ac111 AC_MSG_RESULT([headers missing or too old (requires 1.2.0.4)])
113 AC_MSG_FAILURE([--with-zlib was given, but zlib headers were not present or were too old (requires 1.2.0.4)])
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceRequestCFNet.cpp94 // Remove existing headers first, as some of them may no longer be present in the map.
177 if (CFDictionaryRef headers = CFURLRequestCopyAllHTTPHeaderFields(m_cfRequest.get())) {
178 CFIndex headerCount = CFDictionaryGetCount(headers);
181 CFDictionaryGetKeysAndValues(headers, keys.data(), values.data());
184 CFRelease(headers);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginObject.h88 extern void notifyStream(PluginObject* object, const char *url, const char *headers);
/external/chromium/net/spdy/
H A Dspdy_network_transaction_unittest.cc167 ASSERT_TRUE(response->headers != NULL);
168 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine());
183 output_.status_line = response->headers->GetStatusLine();
692 EXPECT_TRUE(response1->headers != NULL);
694 out.status_line = response1->headers->GetStatusLine();
773 EXPECT_TRUE(response1->headers != NULL);
775 out.status_line = response1->headers->GetStatusLine();
783 EXPECT_TRUE(response2->headers != NULL);
785 out.status_line = response2->headers->GetStatusLine();
873 EXPECT_TRUE(response1->headers !
3276 scoped_refptr<HttpResponseHeaders> headers = out.response_info.headers; local
3438 scoped_refptr<HttpResponseHeaders> headers = out.response_info.headers; local
3478 const char* headers[10]; member in struct:net::InvalidSynReplyTests
3719 spdy::SpdyHeaderBlock* headers = local
[all...]
/external/chromium/chrome/browser/safe_browsing/
H A Dmalware_details_unittest.cc55 void WriteHeaders(disk_cache::Entry* entry, const std::string headers) { argument
58 headers.c_str(), headers.size());
59 responseinfo.headers = new net::HttpResponseHeaders(raw_headers);
87 const std::string headers, const std::string data) {
97 WriteHeaders(entry, headers);
267 EXPECT_EQ(expected->response().headers(i).name(),
268 resource->response().headers(i).name());
269 EXPECT_EQ(expected->response().headers(i).value(),
270 resource->response().headers(
86 WriteToEntry(disk_cache::Backend* cache, const std::string key, const std::string headers, const std::string data) argument
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTable.cpp119 // cells have borders, or use attributes like headers, abbr, scope or axis
178 if (!cellElement->headers().isEmpty() || !cellElement->abbr().isEmpty()
390 void AccessibilityTable::rowHeaders(AccessibilityChildrenVector& headers) argument
402 headers.append(header);
406 void AccessibilityTable::columnHeaders(AccessibilityChildrenVector& headers) argument
418 headers.append(header);
/external/webkit/Source/WebCore/inspector/front-end/
H A DNetworkManager.js82 resource.requestHeaders = request.headers;
94 resource.responseHeaders = response.headers;
120 return response && !response.status && !response.mimeType && !Object.keys(response.headers).length;
261 resource.requestHeaders = request.headers;
276 resource.responseHeaders = response.headers;
/external/chromium/third_party/libevent/
H A Dhttp.c214 static int evhttp_add_header_internal(struct evkeyvalq *headers,
375 * Create the headers needed for an HTTP request
401 evhttp_is_connection_close(int flags, struct evkeyvalq* headers) argument
405 const char *connection = evhttp_find_header(headers, "Proxy-Connection");
408 const char *connection = evhttp_find_header(headers, "Connection");
414 evhttp_is_connection_keepalive(struct evkeyvalq* headers) argument
416 const char *connection = evhttp_find_header(headers, "Connection");
422 evhttp_maybe_add_date_header(struct evkeyvalq *headers) argument
424 if (evhttp_find_header(headers, "Date") == NULL) {
439 evhttp_add_header(headers, "Dat
445 evhttp_maybe_add_content_length_header(struct evkeyvalq *headers, long content_length) argument
1309 evhttp_find_header(const struct evkeyvalq *headers, const char *key) argument
1322 evhttp_clear_headers(struct evkeyvalq *headers) argument
1342 evhttp_remove_header(struct evkeyvalq *headers, const char *key) argument
1379 evhttp_add_header(struct evkeyvalq *headers, const char *key, const char *value) argument
1399 evhttp_add_header_internal(struct evkeyvalq *headers, const char *key, const char *value) argument
1462 evhttp_append_to_last_header(struct evkeyvalq *headers, const char *line) argument
1490 struct evkeyvalq* headers = req->input_headers; local
1533 struct evkeyvalq *headers = req->input_headers; local
2115 evhttp_parse_query(const char *uri, struct evkeyvalq *headers) argument
[all...]

Completed in 974 milliseconds

1234567891011>>