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

1 2 3 4 5 6 7 8 9

  /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/lib/
easyif.h 26 * Prototypes for library-wide functions provided by easy.c
29 CURL_EXTERN CURLcode curl_easy_perform_ev(struct Curl_easy *easy);
  /external/curl/tests/libtest/
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...]
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...]
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);
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...]
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...]
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);
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/docs/examples/
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...]
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...]
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...]
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
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-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/src/
tool_main.c 153 config->easy = curl_easy_init();
154 if(config->easy) {
157 config->first->easy = config->easy;
161 helpf(stderr, "error initializing curl easy handle\n");
205 /* Cleanup the easy handle */
206 curl_easy_cleanup(config->easy);
207 config->easy = NULL;
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
tool_cb_hdr.c 93 !curl_easy_getinfo(outs->config->easy, CURLINFO_EFFECTIVE_URL, &url) &&
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15747b.go 8 // then it's easy to end up not initializing the '&x' pseudo-variable
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15747b.go 8 // then it's easy to end up not initializing the '&x' pseudo-variable
  /external/curl/include/curl/
multi.h 66 CURLM_BAD_EASY_HANDLE, /* an easy handle was not good/valid */
71 CURLM_ADDED_ALREADY, /* an easy handle already added to a multi handle was
88 CURLMSG_DONE, /* This easy handle has completed. 'result' contains
197 * touch any individual easy handles in any way. We need to define
268 typedef int (*curl_socket_callback)(CURL *easy, /* easy handle */
430 CURL *easy,
  /prebuilts/go/darwin-x86/misc/chrome/gophertool/
gopher.js 19 // one is easy. (no server-side mapping)
  /prebuilts/go/linux-x86/misc/chrome/gophertool/
gopher.js 19 // one is easy. (no server-side mapping)
  /bionic/tests/
stack_unwinding_test.cpp 69 TEST(stack_unwinding, easy) {

Completed in 341 milliseconds

1 2 3 4 5 6 7 8 9