HomeSort by relevance Sort by last modified time
    Searched refs:headers (Results 126 - 150 of 850) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
backward_warning.h 24 * This is an internal header file, included by other library headers.
36 listing of replacement headers and interfaces, consult the file \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
backward_warning.h 24 * This is an internal header file, included by other library headers.
36 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 32 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 32 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 32 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/backward/
backward_warning.h 32 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/
backward_warning.h 25 * This is an internal header file, included by other library headers.
37 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/backward/
backward_warning.h 25 * This is an internal header file, included by other library headers.
37 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/
backward_warning.h 25 * This is an internal header file, included by other library headers.
37 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/backward/
backward_warning.h 25 * This is an internal header file, included by other library headers.
37 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/backward/
backward_warning.h 24 * This is an internal header file, included by other library headers.
36 listing of replacement headers and interfaces, consult the file \
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
backward_warning.h 24 * This is an internal header file, included by other library headers.
36 listing of replacement headers and interfaces, consult the file \
  /system/core/libion/tests/
Android.mk 23 LOCAL_C_INCLUDES := $(LOCAL_PATH)/../kernel-headers
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
client.py 29 Does not add X-Forwarded-For or other standard headers
68 headers = {}
72 headers[key] = value
87 headers['Content-Length'] = content_length
89 headers['Content-Type'] = environ['CONTENT_TYPE']
94 path, body, headers)
124 # Remove these headers from response (specify lower case header
134 Turn a Message object into a list of WSGI-style headers.
138 headers = message._headers
140 headers = message.header
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestEventHandler.java 40 /* List of headers received */
217 * Implements the EventHandler headers method called when a server
220 public void headers(Headers headers) { method in class:TestEventHandler
222 Log.v(LOGTAG, "TestEventHandler:headers()");
231 /* Check through headers received for matches with expected
232 * headers */
243 s = Long.toString(headers.getContentLength());
246 s = headers.getContentType()
    [all...]
  /bionic/libc/kernel/tools/
kernel.py 5 # the kernel headers
23 """a class used to non-recursively detect which Linux kernel headers are
32 # # get the set of Linux headers included by your files
33 # headers = scanner.getHeaders()
35 # # get the set of of input files that do include Linux headers
73 self.files = set() # set of files being parsed for headers
74 self.headers = {} # maps headers to set of users
98 if not header in self.headers:
99 self.headers[header] = set(
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
lint.py 22 environment (these headers should appear as CONTENT_LENGTH and
56 * That the headers is a list (not a subclass, not another kind of
59 * That the items of the headers are tuples of strings.
64 * That the headers don't contain newlines or colons, end in _ or -, or
153 headers = args[1]
160 check_headers(headers)
161 check_content_type(status, headers)
378 def check_headers(headers):
379 assert isinstance(headers,list), (
380 "Headers (%r) must be of type list: %r
    [all...]
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.java 20 import com.squareup.okhttp.Headers;
94 public List<String> headers; field in class:Main
112 @Option(name = { "-i", "--include" }, description = "Include protocol headers in the output")
149 Headers headers = response.headers(); local
150 for (int i = 0, size = headers.size(); i < size; i++) {
151 System.out.println(headers.name(i) + ": " + headers.value(i));
207 if (headers != null)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 22 environment (these headers should appear as CONTENT_LENGTH and
56 * That the headers is a list (not a subclass, not another kind of
59 * That the items of the headers are tuples of strings.
64 * That the headers don't contain newlines or colons, end in _ or -, or
159 headers = args[1]
166 check_headers(headers)
167 check_content_type(status, headers)
382 def check_headers(headers):
383 assert_(type(headers) is ListType,
384 "Headers (%r) must be of type list: %r
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 22 environment (these headers should appear as CONTENT_LENGTH and
56 * That the headers is a list (not a subclass, not another kind of
59 * That the items of the headers are tuples of strings.
64 * That the headers don't contain newlines or colons, end in _ or -, or
159 headers = args[1]
166 check_headers(headers)
167 check_content_type(status, headers)
382 def check_headers(headers):
383 assert_(type(headers) is ListType,
384 "Headers (%r) must be of type list: %r
    [all...]
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 19 import com.squareup.okhttp.Headers;
76 Headers responseHeaders = createHeaders(urlConnection.getHeaderFields());
77 // Some request headers are needed for Vary caching.
78 Headers varyHeaders = varyHeaders(urlConnection, responseHeaders);
92 .headers(varyHeaders)
102 // A network response is required for the Cache to find any Vary headers it needs.
106 // Response headers
107 Headers okHeaders = extractOkResponseHeaders(httpUrlConnection);
108 okResponseBuilder.headers(okHeaders);
137 * Returns headers for the header names and values in the {@link Map}
279 Headers headers = extractOkHeaders(requestHeaders); local
290 final Headers headers = response.headers(); local
    [all...]
  /external/apache-http/src/org/apache/http/client/params/
ClientParamBean.java 90 public void setDefaultHeaders (final Collection <Header> headers) {
91 params.setParameter(ClientPNames.DEFAULT_HEADERS, headers);
  /external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
cloudstorage_api.py 55 options: A str->basestring dict to specify additional headers to pass to
60 See https://developers.google.com/storage/docs/reference-headers
139 status, headers, content = api.head_object(
141 errors.check_status(status, [200], filename, resp_headers=headers,
145 st_size=common.get_stored_content_length(headers),
146 st_ctime=common.http_time_to_posix(headers.get('last-modified')),
147 etag=headers.get('etag'),
148 content_type=headers.get('content-type'),
149 metadata=common.get_metadata(headers))
184 api_utils._quote_filename(dst), headers=metadata
    [all...]
errors.py 96 def check_status(status, expected, path, headers=None,
104 headers: HTTP request headers.
105 resp_headers: HTTP response headers.
121 'Request headers: %r.\n'
122 'Response headers: %r.\n'
125 (expected, status, path, headers, resp_headers, body, extras))
storage_api.py 81 headers={'content-type': 'text/plain'}, payload='blah'.
85 a tuple of (status, headers, content) that represents a HTTP response
114 def do_request_async(self, url, method='GET', headers=None, payload=None,
120 if headers is None:
121 headers = {}
122 if 'x-goog-api-version' not in headers:
123 headers['x-goog-api-version'] = '2'
124 headers['accept-encoding'] = 'gzip, *'
127 url, method=method, headers=headers, payload=payload
    [all...]

Completed in 7912 milliseconds

1 2 3 4 56 7 8 91011>>