HomeSort by relevance Sort by last modified time
    Searched refs:headers (Results 226 - 250 of 590) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/net/http/
Request.java 95 * headers.
109 * @param headers reqeust headers
114 Map<String, String> headers) {
140 addHeaders(headers);
187 * Add all headers in given map to this request. This is a helper
190 void addHeaders(Map<String, String> headers) {
191 if (headers == null) {
196 Iterator<Entry<String, String>> i = headers.entrySet().iterator();
204 * Send the request line and headers
    [all...]
RequestHandle.java 63 String method, Map<String, String> headers,
66 if (headers == null) {
67 headers = new HashMap<String, String>();
69 mHeaders = headers;
87 String method, Map<String, String> headers,
90 this(requestQueue, url, uri, method, headers, bodyProvider, bodyLength,
155 // be careful and remove authentication headers, if any
214 // Update the cache headers for this URL
311 // because we do not preemptively send authorization headers, nc is always 1
RequestQueue.java 290 * @param headers A hashmap of http headers.
298 Map<String, String> headers, EventHandler eventHandler,
301 return queueRequest(url, uri, method, headers, eventHandler,
310 * @param headers A hashmap of http headers.
317 String url, WebAddress uri, String method, Map<String, String> headers,
334 bodyLength, eventHandler, headers);
344 this, url, uri, method, headers, bodyProvider, bodyLength,
371 String method, Map<String, String> headers,
    [all...]
  /frameworks/base/media/libstagefright/rtsp/
AMPEG4ElementaryAssembler.cpp 229 List<AUHeader> headers; local
241 size_t n = headers.empty() ? mIndexLength : mIndexDeltaLength;
247 if (headers.empty()) {
299 headers.push_back(header);
312 for (List<AUHeader>::iterator it = headers.begin();
313 it != headers.end(); ++it) {
  /frameworks/base/obex/javax/obex/
HeaderSet.java 242 * headers to include in the next request.
440 * defined in this interface or any of the user-defined headers
493 * Retrieves the list of headers that may be retrieved via the
495 * other words, this method returns all the headers that are available in
498 * @return the array of headers that are set in this object or
499 * <code>null</code> if no headers are available
567 byte[] headers = out.toByteArray();
570 if ((headers == null) || (headers.length == 0)) {
574 int[] result = new int[headers.length]
    [all...]
  /ndk/build/tools/
dev-platform-import.sh 40 "This script is used to import the NDK-exposed system libraries and headers from
70 3/ Copy system headers from \$ANDROID/framework/base/ and other
245 # $2+: List of headers
251 log "Copying system headers from: $srcdir"
269 # Copy all headers found under $1
273 local headers=$(list_regular_files_in "$1")
274 copy_system_headers $1 $headers
279 # $2+: List of headers
304 local headers=$(list_regular_files_in "$1")
305 copy_arch_system_headers $1 $headers
    [all...]
  /bionic/libstdc++/
Android.mk 4 # Note that we need to access private Bionic headers
  /external/apache-http/src/org/apache/http/message/
AbstractHttpMessage.java 119 public void setHeaders(final Header[] headers) {
120 this.headergroup.setHeaders(headers);
  /external/bluetooth/glib/glib/
Makefile.am 247 echo "*** Old headers found in $(glibincludedir). You should remove the" ; \
  /external/chromium/net/http/
http_auth.h 39 // 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,
http_basic_stream.cc 41 int HttpBasicStream::SendRequest(const HttpRequestHeaders& headers,
53 return parser_->SendRequest(request_line_, headers, request_body, response,
  /external/icu4c/tools/ctestfw/
testdata.cpp 53 RBTestData::RBTestData(UResourceBundle *data, UResourceBundle *headers, UErrorCode& status)
56 fHeaders(headers),
61 UResourceBundle *currHeaders = ures_getByKey(data, "Headers", NULL, &intStatus);
  /external/llvm/
llvm-host-build.mk 38 # Make sure bionic is first so we can include system headers.
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_results_uploader.py 91 headers = {"Content-Type": content_type}
92 request = urllib2.Request(url, data, headers)
  /frameworks/base/core/java/android/webkit/
LoadListener.java 28 import android.net.http.Headers;
123 private Headers mHeaders;
191 * This message is sent when the LoadListener has headers
192 * available. The headers are sent onto WebCore to see what we
195 handleHeaders((Headers) msg.obj);
303 * Parse the headers sent from the server.
304 * @param headers gives up the HeaderGroup
308 public void headers(Headers headers) { method in class:LoadListener
    [all...]
  /frameworks/base/media/libmediaplayerservice/
TestPlayerStub.cpp 116 const char *url, const KeyedVector<String8, String8> *headers) {
165 return mPlayer->setDataSource(mContentUrl, headers);
  /frameworks/base/media/libstagefright/
DataSource.cpp 126 const char *uri, const KeyedVector<String8, String8> *headers) {
133 if (httpSource->connect(uri, headers) != OK) {
  /packages/apps/Browser/src/com/android/browser/
IntentHandler.java 229 Map<String, String> headers = null; local
243 headers = new HashMap<String, String>();
246 headers.put(key, pairs.getString(key));
280 return new UrlData(url, headers, intent, preloaded, preloadedSearchBoxQuery);
374 UrlData(String url, Map<String, String> headers, Intent intent) {
375 this(url, headers, intent, null, null);
378 UrlData(String url, Map<String, String> headers, Intent intent,
381 this.mHeaders = headers;
  /system/netd/
Android.mk 27 $(LOCAL_PATH)/../bluetooth/bluez-clean-headers \
  /external/chromium/net/spdy/
spdy_session.cc 35 const linked_ptr<spdy::SpdyHeaderBlock>& headers,
39 : headers_(headers),
57 dict->Set("headers", headers_list);
462 const linked_ptr<spdy::SpdyHeaderBlock>& headers) {
473 flags, false, headers.get()));
484 new NetLogSpdySynParameter(headers, flags, stream_id, 0)));
1233 headers); local
1237 headers); local
1242 headers); local
    [all...]
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.cpp 175 // called with data after all headers have been processed via headerCallback
460 void ResourceHandleManager::setupPOST(ResourceHandle* job, struct curl_slist** headers)
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...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpEngine.java 51 * is sent it is an error to modify the request headers. After
55 * response has been read the response headers and body can be read.
81 * The maximum number of bytes to buffer when sending headers and a request
82 * body. When the headers and body can be sent in a single write, the
118 * This stream buffers the request headers and the request body when their
132 /** The time when the request headers were written, or -1 if they haven't been written yet. */
161 * conditional get succeeds, these will be used for the response headers and
177 * @param requestHeaders the client's supplied request headers. This class
202 * source if necessary. Prepares the request headers and gets ready to start
218 * headers may forbid network use. In that case, dispose of the networ
544 RawHeaders headers; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPMessage.java 138 * 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.iterator()
    [all...]
  /bootable/recovery/
common.h 41 void ui_start_menu(char** headers, char** items, int initial_selection);
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 63 * @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

Completed in 1790 milliseconds

1 2 3 4 5 6 7 8 91011>>