HomeSort by relevance Sort by last modified time
    Searched refs:headers (Results 201 - 225 of 370) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/ril/mock-ril/src/generated/cpp/
msgheader.pb.h 13 #error incompatible with your Protocol Buffer headers. Please update
14 #error your headers.
18 #error incompatible with your Protocol Buffer headers. Please
  /packages/providers/DownloadProvider/tests/src/tests/http/
MockWebServer.java 197 List<String> headers = new ArrayList<String>(); local
202 headers.add(header);
245 return new RecordedRequest(request, headers, chunkSizes,
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.cpp 172 // called with data after all headers have been processed via headerCallback
457 void ResourceHandleManager::setupPOST(ResourceHandle* job, struct curl_slist** headers)
523 *headers = curl_slist_append(*headers, "Transfer-Encoding: chunked");
752 struct curl_slist* headers = 0; local
763 headers = curl_slist_append(headers, headerLatin1.data());
770 setupPOST(job, &headers);
772 setupPUT(job, &headers);
776 if (headers) {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 476 Map<String, String> headers = server.pathToRequest().get(path).getHeaders();
477 assertNull(headers.get("Accept"));
478 assertEquals("application/x-www-form-urlencoded", headers.get("Content-Type"));
479 assertEquals("5", headers.get("Content-Length"));
480 assertEquals("localhost:" + port, headers.get("Host"));
    [all...]
  /external/chromium/net/flip/
flip_network_transaction_unittest.cc 105 0xc0, 0x00, 0x00, 0x03, // 4 headers
133 0x00, 0x00, 0x00, 0x04, // 4 headers
154 0xc0, 0x00, 0x00, 0x03, // 4 headers
176 0x00, 0x00, 0x00, 0x04, // 4 headers
313 EXPECT_TRUE(response->headers != NULL);
315 out.status_line = response->headers->GetStatusLine();
412 0xc0, 0x00, 0x00, 0x03, // 4 headers
514 // Verify that various SynReply headers parse correctly through the
534 // This is the minimalist set of headers.
548 // Headers with a comma separated list
620 scoped_refptr<HttpResponseHeaders> headers = out.response_info.headers; local
    [all...]
  /external/chromium/net/socket_stream/
socket_stream.cc 641 tunnel_response_headers_->headers(), tunnel_response_headers_len_, 0);
652 scoped_refptr<HttpResponseHeaders> headers; local
653 headers = new HttpResponseHeaders(
654 HttpUtil::AssembleRawHeaders(tunnel_response_headers_->headers(), eoh));
655 if (headers->GetParsedHttpVersion() < HttpVersion(1, 0)) {
660 switch (headers->response_code()) {
673 this, tunnel_response_headers_->headers() + eoh,
678 result = HandleAuthChallenge(headers.get());
846 int SocketStream::HandleAuthChallenge(const HttpResponseHeaders* headers) {
865 HttpAuth::ChooseBestChallenge(headers, HttpAuth::AUTH_PROXY, auth_origin
    [all...]
socket_stream.h 164 char* headers() const { return headers_.get(); } function in class:net::SocketStream::ResponseHeaders
244 int HandleAuthChallenge(const HttpResponseHeaders* headers);
  /external/openssl/apps/
ocsp.c 71 #include "apps.h" /* needs to be included before the openssl headers! */
117 STACK_OF(CONF_VALUE) *headers,
136 STACK_OF(CONF_VALUE) *headers = NULL;
240 if (!X509V3_add_value(args[1], args[2], &headers))
772 port, use_ssl, headers, req_timeout);
921 sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
1242 /* Look for end of headers */
1277 STACK_OF(CONF_VALUE) *headers,
    [all...]
  /external/qemu/proxy/
proxy_http_rewriter.c 61 ** HTTP HEADERS
112 ** HTTP HEADERS LIST
189 HttpHeaderList headers[1]; /* headers */ member in struct:__anon6520
220 http_header_list_init(r->headers);
237 http_header_list_done(r->headers);
252 return (char*)http_header_list_find(r->headers, key);
263 http_header_list_add(r->headers, h);
273 if (r->headers->last) {
274 return http_header_append( r->headers->last, line )
    [all...]
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 487 "statusCode INTEGER NOT NULL, responseURL TEXT NOT NULL, mimeType TEXT, textEncodingName TEXT, headers TEXT, data INTEGER NOT NULL ON CONFLICT FAIL)");
645 // Serialize the headers
656 String headers = String::adopt(stringBuilder); local
658 SQLiteStatement resourceStatement(m_database, "INSERT INTO CacheResources (url, statusCode, responseURL, headers, data, mimeType, textEncodingName) VALUES (?, ?, ?, ?, ?, ?, ?)");
668 resourceStatement.bindText(4, headers);
806 static inline void parseHeaders(const String& headers, ResourceResponse& response)
810 while ((endPos = headers.find('\n', startPos)) != -1) {
813 parseHeader(headers.characters() + startPos, endPos - startPos, response);
818 if (startPos != static_cast<int>(headers.length()))
819 parseHeader(headers.characters(), headers.length(), response)
852 String headers = cacheStatement.getColumnText(4); local
    [all...]
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 134 static void populateHeadersObject(ScriptObject* object, const HTTPHeaderMap& headers)
136 HTTPHeaderMap::const_iterator end = headers.end();
137 for (HTTPHeaderMap::const_iterator it = headers.begin(); it != end; ++it) {
InspectorFrontend.h 101 void didGetProfileHeaders(int callId, const ScriptArray& headers);
  /frameworks/base/core/tests/utillib/src/coretestutils/http/
MockWebServer.java 215 List<String> headers = new ArrayList<String>(); local
220 headers.add(header);
263 return new RecordedRequest(request, headers, chunkSizes,
281 // Send headers
  /external/chromium/net/http/
http_auth.h 81 // Iterate through the challenge headers, and pick the best one that
94 static void ChooseBestChallenge(const HttpResponseHeaders* headers,
  /external/chromium/net/url_request/
url_request_http_job.h 35 virtual void SetExtraRequestHeaders(const std::string& headers);
url_request_job.h 55 // Sets extra request headers for Job types that support request headers.
56 virtual void SetExtraRequestHeaders(const std::string& headers) { }
223 // Notifies the job that headers have been received.
url_request_file_job.cc 191 void URLRequestFileJob::SetExtraRequestHeaders(const std::string& headers) {
194 if (net::HttpUtil::ParseRanges(headers, &ranges)) {
  /external/chromium/third_party/libevent/
evhttp.h 304 /* Interfaces for dealing with HTTP headers */
349 * @param headers the head of the evkeyval queue
351 void evhttp_parse_query(const char *uri, struct evkeyvalq *headers);
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginStream.h 92 void startStream(NSURL *, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers);
  /frameworks/base/include/media/
MediaPlayerInterface.h 105 const KeyedVector<String8, String8> *headers = NULL) = 0;
  /frameworks/base/obex/javax/obex/
ServerOperation.java 165 * Determine if any headers were sent in the initial request
241 * operation even if no headers will be sent; if <code>false</code>
243 * headers to send
440 * Determine if any headers were sent in the initial request
505 * Returns the headers that have been received during the operation.
506 * Modifying the object returned has no effect on the headers that are sent
508 * @return the headers received during this <code>Operation</code>
517 * Specifies the headers that should be sent in the next OBEX message that
519 * @param headers the headers to send in the next messag
    [all...]
  /external/iptables/
Android.mk 60 # generated headers
  /external/stlport/
configure 32 --includedir=<dir> install path for headers (PREFIX/include)
40 --with-boost=<dir> use boost headers in catalog <dir>
  /external/webkit/WebKitTools/wx/packaging/debian/
rules 35 dh_install -pwebkitwx-headers \
  /frameworks/base/media/libstagefright/include/
AwesomePlayer.h 62 const KeyedVector<String8, String8> *headers = NULL);
220 const KeyedVector<String8, String8> *headers = NULL);

Completed in 573 milliseconds

1 2 3 4 5 6 7 891011>>