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

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
region1.d 6 # objdump: --headers
  /bootable/recovery/
wear_ui.h 29 void StartMenu(const char* const* headers, const char* const* items,
37 // Unusable rows when displaying the recovery menu, including the lines for headers (Android
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_install_headers.py 17 # we have two headers
23 headers = [header1, header2]
25 pkg_dir, dist = self.create_dist(headers=headers)
27 self.assertEqual(cmd.get_inputs(), headers)
  /external/python/cpython2/Lib/distutils/tests/
test_install_headers.py 17 # we have two headers
23 headers = [header1, header2]
25 pkg_dir, dist = self.create_dist(headers=headers)
27 self.assertEqual(cmd.get_inputs(), headers)
  /external/python/cpython3/Lib/distutils/tests/
test_install_headers.py 15 # we have two headers
21 headers = [header1, header2]
23 pkg_dir, dist = self.create_dist(headers=headers)
25 self.assertEqual(cmd.get_inputs(), headers)
  /external/toolchain-utils/cros_utils/
html_tools.py 62 def GetTableHeader(headers):
63 row = ''.join(['<th>%s</th>' % header for header in headers])
83 def GetTable(headers, rows):
84 table = [GetTableHeader(headers)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_headers.py 17 # we have two headers
23 headers = [header1, header2]
25 pkg_dir, dist = self.create_dist(headers=headers)
27 self.assertEqual(cmd.get_inputs(), headers)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_headers.py 17 # we have two headers
23 headers = [header1, header2]
25 pkg_dir, dist = self.create_dist(headers=headers)
27 self.assertEqual(cmd.get_inputs(), headers)
  /test/vti/fuzz_test_serving/
main.py 20 self.response.headers['Content-Type'] = 'text/plain'
  /external/autotest/client/common_lib/cros/fake_device_server/client_lib/
registration.py 39 @param additional_headers: additional HTTP headers to pass (expects a
47 headers = {'Content-Type': 'application/json'}
49 headers.update(additional_headers)
52 headers=headers)
67 headers = {'Content-Type': 'application/json',
71 headers.update(auth_headers)
73 request = urllib2.Request(self.get_url(), json.dumps(data), headers)
  /external/libbrillo/brillo/http/
http_utils.cc 25 const HeaderList& headers,
29 request_type::kGet, url, headers, transport, error);
33 const HeaderList& headers,
39 headers,
67 const HeaderList& headers,
71 url, data.data(), data.size(), mime_type, headers, transport, error);
77 const HeaderList& headers,
85 headers,
97 const HeaderList& headers,
101 request.AddHeaders(headers);
    [all...]
  /external/curl/docs/examples/
smtp-mime.c 73 struct curl_slist *headers = NULL; local
104 headers = curl_slist_append(headers, *cpp);
105 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
145 curl_slist_free_all(headers);
  /frameworks/base/tests/CoreTests/android/core/
RequestAPITest.java 69 public void verifyFailure(Map<String, String> headers) {
73 "http://localhost:8080/test1", "GET", headers, null,
89 Map<String, String> headers = new HashMap<>(); local
90 headers.put(null, null);
91 verifyFailure(headers);
101 Map<String, String> headers = new HashMap<>(); local
102 headers.put("TestHeader", null);
103 verifyFailure(headers);
113 Map<String, String> headers = new HashMap<>(); local
114 headers.put("TestHeader", "")
133 Map<String, String> headers = new HashMap<>(); local
145 Map<String, String> headers = new HashMap<>(); local
159 Map<String, String> headers = new HashMap<>(); local
    [all...]
  /external/skqp/infra/bots/android_compile/
trigger_wait_ac_task.py 44 headers = {"Metadata-Flavor": "Google"}
45 resp = requests.get(GCE_WEBHOOK_SALT_METADATA_URI, headers=headers)
68 headers = _GetAuthHeaders(task, options)
69 resp = requests.post(ANDROID_COMPILE_REGISTER_POST_URI, task, headers=headers)
96 headers = _GetAuthHeaders('', options)
107 resp = requests.get(get_url, headers=headers)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/
update_external_sources_android.sh 67 function create_spirv-headers () {
68 rm -rf $SHADERCTHIRDPARTY/spirv-tools/external/spirv-headers
69 echo "Creating local spirv-headers repository ($SHADERCTHIRDPARTY/spirv-tools/external/spirv-headers)."
70 mkdir -p $SHADERCTHIRDPARTY/spirv-tools/external/spirv-headers
71 cd $SHADERCTHIRDPARTY/spirv-tools/external/spirv-headers
72 git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/spirv-headers .
76 function update_spirv-headers () {
77 echo "Updating $SHADERCTHIRDPARTY/spirv-tools/external/spirv-headers"
78 cd $SHADERCTHIRDPARTY/spirv-tools/external/spirv-headers
    [all...]
  /external/okhttp/okhttp-logging-interceptor/src/main/java/com/squareup/okhttp/logging/
HttpLoggingInterceptor.java 19 import com.squareup.okhttp.Headers;
62 * Logs request and response lines and their respective headers.
78 HEADERS,
80 * Logs request and response lines and their respective headers and bodies (if present).
146 boolean logHeaders = logBody || level == Level.HEADERS;
162 // Request body headers are only present when installed as a network interceptor. Force
172 Headers headers = request.headers(); local
173 for (int i = 0, count = headers.size(); i < count; i++)
213 Headers headers = response.headers(); local
    [all...]
  /external/curl/docs/cmdline-opts/
proxytunnel.d 12 To suppress proxy CONNECT response headers when curl is set to output headers
13 use --suppress-connect-headers.
  /external/python/cpython3/Lib/distutils/command/
config.py 107 def _gen_temp_sourcefile(self, body, headers, lang):
110 if headers:
111 for header in headers:
120 def _preprocess(self, body, headers, include_dirs, lang):
121 src = self._gen_temp_sourcefile(body, headers, lang)
127 def _compile(self, body, headers, include_dirs, lang):
128 src = self._gen_temp_sourcefile(body, headers, lang)
136 def _link(self, body, headers, include_dirs, libraries, library_dirs,
138 (src, obj) = self._compile(body, headers, include_dirs, lang)
173 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c")
    [all...]
  /external/curl/tests/libtest/
lib506.c 120 static struct curl_slist *sethost(struct curl_slist *headers)
122 (void)headers;
131 struct curl_slist *headers; local
142 headers = sethost(NULL);
144 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
158 curl_slist_free_all(headers);
181 struct curl_slist *headers = NULL; local
289 headers = sethost(NULL);
290 test_setopt(curl, CURLOPT_HTTPHEADER, headers);
305 curl_slist_free_all(headers);
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 18 import com.squareup.okhttp.Headers;
32 private Headers.Builder headers = new Headers.Builder(); field in class:MockResponse
57 result.headers = headers.build().newBuilder();
79 /** Returns the HTTP headers, such as "Content-Length: 0". */
80 public Headers getHeaders() {
81 return headers.build();
85 * Removes all HTTP headers including any "Content-Length" an
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
EmailTest.java 150 final Map<String, String> headers = new HashMap<String, String>(); local
151 final String body = extractBody(mEmail.getMailerData(), headers);
154 assertEquals("or@igin.com", headers.get("From"));
155 assertEquals("dest@ination.com", headers.get("To"));
156 assertEquals("subject", headers.get("Subject"));
157 assertEquals(Message.PLAIN, headers.get("Content-type"));
158 assertEquals(4, headers.size());
170 final Map<String, String> headers = new HashMap<String, String>(); local
171 final String body = extractBody(mEmail.getMailerData(), headers);
174 assertEquals(Message.HTML, headers.get("Content-type"))
    [all...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DeliveryInd.java 40 * Constructor with given headers.
42 * @param headers Headers for this PDU.
44 DeliveryInd(PduHeaders headers) {
45 super(headers);
GenericPdu.java 24 * The headers of pdu.
38 * @param headers Headers for this PDU.
40 GenericPdu(PduHeaders headers) {
41 mPduHeaders = headers;
45 * Get the headers of this PDU.
NotifyRespInd.java 47 * Constructor with given headers.
49 * @param headers Headers for this PDU.
51 NotifyRespInd(PduHeaders headers) {
52 super(headers);
SendConf.java 37 * Constructor with given headers.
39 * @param headers Headers for this PDU.
41 SendConf(PduHeaders headers) {
42 super(headers);

Completed in 599 milliseconds

1 2 3 45 6 7 8 91011>>