HomeSort by relevance Sort by last modified time
    Searched refs:headers (Results 76 - 100 of 1842) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/gn/
find_headers.py 11 # We'll recursively search each include directory for headers,
25 headers = [] variable
30 headers.append(os.path.join(directory,f))
31 headers.sort()
37 for h in headers:
43 for h in headers:
  /external/skqp/gn/
find_headers.py 11 # We'll recursively search each include directory for headers,
25 headers = [] variable
30 headers.append(os.path.join(directory,f))
31 headers.sort()
37 for h in headers:
43 for h in headers:
  /tools/tradefederation/core/src/com/android/tradefed/util/
Email.java 75 private void addHeader(List<String> headers, String name, String value) {
77 headers.add(String.format("%s: %s", name, value));
84 private void addHeaders(List<String> headers, String name, Collection<String> values) {
89 headers.add(String.format("%s: %s", name, strValues));
106 // Sender, Recipients, CC, BCC, Subject are all set with appropriate email headers
107 final ArrayList<String> headers = new ArrayList<String>(); local
110 addHeader(headers, "From", msg.getSender());
120 addHeaders(headers, "To", msg.getTo());
121 addHeaders(headers, "Cc", msg.getCc());
122 addHeaders(headers, "Bcc", msg.getBcc())
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
115 if headers:
116 for header in headers:
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c"):
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
RecordedRequest.java 19 import com.squareup.okhttp.Headers;
31 private final Headers headers; field in class:RecordedRequest
38 public RecordedRequest(String requestLine, Headers headers, List<Integer> chunkSizes,
41 this.headers = headers;
73 /** Returns all headers. */
74 public Headers getHeaders() {
75 return headers;
    [all...]
  /external/python/cpython2/Lib/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
115 if headers:
116 for header in headers:
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /external/python/cpython3/Lib/urllib/
response.py 6 headers and a geturl() method that returns the url.
60 def __init__(self, fp, headers):
62 self.headers = headers
65 return self.headers
71 def __init__(self, fp, headers, url, code=None):
72 super(addinfourl, self).__init__(fp, headers)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
115 if headers:
116 for header in headers:
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
115 if headers:
116 for header in headers:
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
115 if headers:
116 for header in headers:
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
config.py 112 def _gen_temp_sourcefile(self, body, headers, lang):
115 if headers:
116 for header in headers:
125 def _preprocess(self, body, headers, include_dirs, lang):
126 src = self._gen_temp_sourcefile(body, headers, lang)
132 def _compile(self, body, headers, include_dirs, lang):
133 src = self._gen_temp_sourcefile(body, headers, lang)
141 def _link(self, body, headers, include_dirs, libraries, library_dirs,
143 (src, obj) = self._compile(body, headers, include_dirs, lang)
178 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
AcknowledgeInd.java 44 * Constructor with given headers.
46 * @param headers Headers for this PDU.
48 AcknowledgeInd(PduHeaders headers) {
49 super(headers);
  /external/apache-http/android/src/android/net/http/
EventHandler.java 22 * processed. The normal order of callbacks is status(), headers(),
84 * Called after all headers are successfully processed.
86 public void headers(Headers headers); method in interface:EventHandler
  /external/autotest/skylab_migration/venv/skylab_venv/
sso_discovery.py 29 def sso_request(url, method='', body='', headers={}, max_redirects=None):
37 @param headers: Dict of the request headers, default is {}.
52 if headers:
55 headers.pop('accept-encoding', None)
56 headers_str = ['%s:%s' % (k, v) for k, v in headers.iteritems()]
59 cmd.extend(['-headers', headers_str])
72 (headers, body) = (result, '')
74 [headers, body] = [s.strip() for s in result.split(LINE_SEP+LINE_SEP)]
75 status = re.search(CODE_REGEX, headers.split(LINE_SEP)[0]
    [all...]
  /external/curl/docs/cmdline-opts/
dump-header.d 4 Help: Write the received headers to <filename>
8 Write the received protocol headers to the specified file.
10 This option is handy to use when you want to store the headers that an HTTP
11 site sends to you. Cookies from the headers could then be read in a second
15 When used in FTP, the FTP server response lines are considered being "headers"
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 48 final Collection<Map.Entry<String, String>> addHeaders = request.headers;
57 StringBuilder headers = new StringBuilder(httpMethod); local
59 headers.append(" ").append(url.getPath());
62 headers.append("?").append(query);
64 headers.append(EOL);
69 headers.append(key).append(": ").append(value).append(EOL);
82 headers.append(key).append(": ").append(header.getValue()).append(EOL);
108 return new URLConnectionResponse(request, headers.toString(), excerpt, connection);
  /external/volley/src/main/java/com/android/volley/toolbox/
HttpHeaderParser.java 35 * Utility methods for parsing HTTP headers.
48 * @param response The network response to parse headers from
54 Map<String, String> headers = response.headers; local
69 headerValue = headers.get("Date");
74 headerValue = headers.get("Cache-Control");
98 headerValue = headers.get("Expires");
103 headerValue = headers.get("Last-Modified");
108 serverEtag = headers.get("ETag");
130 entry.responseHeaders = headers;
201 Map<String, String> headers = new TreeMap<>(String.CASE_INSENSITIVE_ORDER); local
    [all...]
  /frameworks/base/core/java/android/webkit/
PluginData.java 27 * the length of the body, the response headers, and the response
46 * The associated HTTP response headers stored as a map of
63 * @param headers The response headers. Map of
75 Map<String, String[]> headers,
79 mHeaders = headers;
112 * Returns the HTTP response headers associated with the plugin
115 * @return A Map<String, String[]> containing all headers. The
  /frameworks/base/media/java/android/media/
IMediaHTTPConnection.aidl 26 IBinder connect(in String uri, in String headers);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
AcknowledgeInd.java 44 * Constructor with given headers.
46 * @param headers Headers for this PDU.
48 AcknowledgeInd(PduHeaders headers) {
49 super(headers);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
DisclaimersParam.java 64 String[] headers = bundle.getStringArray(HEADER_KEY); local
67 if (headers != null) {
68 // assume headers.length == contentPaths.length
69 Disclaimer[] disclaimers = new Disclaimer[headers.length];
70 for (int i = 0; i < headers.length; i++) {
71 disclaimers[i] = new Disclaimer(headers[i], contentPaths[i]);
90 String[] headers = new String[mDisclaimers.length]; local
93 headers[i] = mDisclaimers[i].mHeader;
96 bundle.putStringArray(HEADER_KEY, headers);
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
AcknowledgeInd.java 42 * Constructor with given headers.
44 * @param headers Headers for this PDU.
46 AcknowledgeInd(PduHeaders headers) {
47 super(headers);
SendConf.java 35 * Constructor with given headers.
37 * @param headers Headers for this PDU.
39 SendConf(PduHeaders headers) {
40 super(headers);
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
AcknowledgeInd.java 44 * Constructor with given headers.
46 * @param headers Headers for this PDU.
48 AcknowledgeInd(PduHeaders headers) {
49 super(headers);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
codealign_1.d 1 #objdump: --section-headers

Completed in 616 milliseconds

1 2 34 5 6 7 8 91011>>