HomeSort by relevance Sort by last modified time
    Searched defs:easy (Results 1 - 25 of 33) sorted by null

1 2

  /external/curl/tests/libtest/
lib543.c 34 CURL *easy; local
39 if((easy = curl_easy_init()) == NULL) {
46 s = curl_easy_escape(easy, (char*)a, asize);
54 curl_easy_cleanup(easy);
lib1502.c 44 CURL* easy = NULL; local
71 easy_init(easy);
73 easy_setopt(easy, CURLOPT_URL, URL);
74 easy_setopt(easy, CURLOPT_HEADER, 1L);
75 easy_setopt(easy, CURLOPT_RESOLVE, dns_cache_list);
79 multi_add_handle(multi, easy);
116 curl_easy_cleanup(easy);
122 curl_multi_remove_handle(multi, easy);
124 curl_easy_cleanup(easy);
130 curl_easy_cleanup(easy);
    [all...]
lib536.c 81 CURL *easy = NULL; local
90 easy_init(easy);
94 easy_setopt(easy, CURLOPT_WRITEFUNCTION, fwrite);
95 easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
96 easy_setopt(easy, CURLOPT_URL, URL);
98 res_multi_add_handle(multi, easy);
110 curl_multi_remove_handle(multi, easy);
112 curl_easy_reset(easy);
114 easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
115 easy_setopt(easy, CURLOPT_URL, libtest_arg2)
    [all...]
lib1531.c 35 CURL *easy; local
42 easy = curl_easy_init();
48 curl_multi_add_handle(multi_handle, easy);
51 curl_easy_setopt(easy, CURLOPT_URL, URL);
52 curl_easy_setopt(easy, CURLOPT_POSTFIELDSIZE_LARGE,
54 curl_easy_setopt(easy, CURLOPT_POSTFIELDS, testData);
140 curl_easy_cleanup(easy);
lib591.c 40 CURL *easy = NULL; local
66 easy_init(easy);
69 easy_setopt(easy, CURLOPT_VERBOSE, 1L);
72 easy_setopt(easy, CURLOPT_URL, URL);
75 easy_setopt(easy, CURLOPT_UPLOAD, 1L);
78 easy_setopt(easy, CURLOPT_READDATA, upload);
81 easy_setopt(easy, CURLOPT_FTPPORT, "-");
84 easy_setopt(easy, CURLOPT_ACCEPTTIMEOUT_MS,
89 multi_add_handle(multi, easy);
142 curl_easy_cleanup(easy);
    [all...]
lib597.c 53 CURL *easy = NULL; local
68 easy_init(easy);
74 easy_setopt(easy, CURLOPT_VERBOSE, 1L);
77 easy_setopt(easy, CURLOPT_URL, URL);
81 easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L);
85 easy_setopt(easy, CURLOPT_CONNECT_ONLY, 0L);
86 easy_setopt(easy, CURLOPT_NOBODY, 1L);
87 easy_setopt(easy, CURLOPT_FORBID_REUSE, 1L);
90 multi_add_handle(multi, easy);
139 multi_remove_handle(multi, easy);
    [all...]
libntlmconnect.c 36 static CURL *easy[MAX_EASY_HANDLES]; variable
42 ssize_t idx = ((CURL **) data) - easy;
61 /* Get socket being used for this easy handle, otherwise CURL_SOCKET_BAD */
62 code = curl_easy_getinfo(easy[idx], CURLINFO_LASTSOCKET, &longdata);
76 /* Track relationship between this easy handle and the socket. */
78 /* An easy handle without previous socket, record the socket. */
82 /* An easy handle with a socket different to previously
117 easy[i] = NULL;
146 easy_init(easy[num_handles]);
150 easy_setopt(easy[num_handles], CURLOPT_HTTPAUTH, CURLAUTH_NTLM)
    [all...]
  /external/curl/tests/unit/
unit1600.c 27 CURL *easy; variable
31 easy = curl_easy_init();
37 curl_easy_cleanup(easy);
46 Curl_ntlm_core_mk_nt_hash(easy, "1", output);
52 Curl_ntlm_core_mk_nt_hash(easy, "hello-you-fool", output);
59 Curl_ntlm_core_mk_nt_hash(easy, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", output);
  /external/curl/docs/examples/
http2-download.c 186 CURL *easy[NUM_HANDLES]; local
202 easy[i] = curl_easy_init();
204 setup(easy[i], i);
207 curl_multi_add_handle(multi_handle, easy[i]);
289 curl_easy_cleanup(easy[i]);
http2-serverpush.c 158 CURL *easy,
178 curl_easy_setopt(easy, CURLOPT_WRITEDATA, out);
203 CURL *easy; local
212 easy = curl_easy_init();
215 setup(easy);
217 /* add the easy transfer */
218 curl_multi_add_handle(multi_handle, easy);
299 * created and added one or more easy handles but we need to clean them up
asiohiper.cpp 37 * When running, the program creates an easy handle for a URL and
69 /* Information associated with a specific easy handle */
72 CURL *easy; member in struct:_ConnInfo
149 /* Check for completed transfers, and remove their easy handles */
156 CURL *easy; local
165 easy = msg->easy_handle;
167 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
168 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
170 curl_multi_remove_handle(g->multi, easy);
172 curl_easy_cleanup(easy);
    [all...]
evhiperfifo.c 42 of URL's and creates some new easy handles to fetch each URL via the
93 /* Information associated with a specific easy handle */
96 CURL *easy; member in struct:_ConnInfo
107 CURL *easy; member in struct:_SockInfo
172 /* Check for completed transfers, and remove their easy handles */
179 CURL *easy; local
185 easy = msg->easy_handle;
187 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
188 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
190 curl_multi_remove_handle(g->multi, easy);
    [all...]
ghiper.c 39 of URL's and creates some new easy handles to fetch each URL via the
77 /* Information associated with a specific easy handle */
79 CURL *easy; member in struct:_ConnInfo
88 CURL *easy; member in struct:_SockInfo
115 /* Check for completed transfers, and remove their easy handles */
122 CURL *easy; local
128 easy = msg->easy_handle;
130 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
131 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
133 curl_multi_remove_handle(g->multi, easy);
    [all...]
hiperfifo.c 39 of URL's and creates some new easy handles to fetch each URL via the
89 /* Information associated with a specific easy handle */
92 CURL *easy; member in struct:_ConnInfo
103 CURL *easy; member in struct:_SockInfo
152 /* Check for completed transfers, and remove their easy handles */
159 CURL *easy; local
165 easy = msg->easy_handle;
167 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
168 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
170 curl_multi_remove_handle(g->multi, easy);
    [all...]
http2-upload.c 242 CURL *easy[NUM_HANDLES]; local
263 easy[i] = curl_easy_init();
265 setup(easy[i], i, filename);
268 curl_multi_add_handle(multi_handle, easy[i]);
353 curl_easy_cleanup(easy[i]);
  /external/curl/lib/
multi.c 146 /* changing to COMPLETED means there's one less easy handle 'alive' */
165 struct Curl_easy *easy; member in struct:Curl_sh_entry
202 check->easy = data;
325 /* allocate a new easy handle to use when closing cached connections */
368 /* Verify that we got a somewhat good easy handle too */
372 /* Prevent users from adding same easy handle more than once and prevent
377 /* Allocate and initialize timeout list for easy handle */
384 * modification of easy nor multi handle allowed before this except for
389 /* Make easy handle use timeout list initialized above */
393 /* set the easy handle *
649 struct Curl_easy *easy = data; local
    [all...]
  /external/curl/src/
tool_cfgable.h 33 CURL *easy; /* A copy of the handle from GlobalConfig */ member in struct:OperationConfig
225 CURL *easy; /* Once we have one, we keep it here */ member in struct:GlobalConfig
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.4.0-beta6/
monkeyrunner-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.5.0/
monkeyrunner-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.0.0-alpha1/
monkeyrunner-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.3.0/
monkeyrunner-25.3.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.3.0-alpha1/
monkeyrunner-25.3.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.3.0-beta1/
monkeyrunner-25.3.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.3.0-beta2/
monkeyrunner-25.3.0-beta2.jar 

Completed in 290 milliseconds

1 2