Lines Matching refs:easy
41 CURL *easy;
93 curl_easy_pause(pooh->easy, CURLPAUSE_CONT);
133 pooh.easy = curl_easy_init();
136 test_setopt(pooh.easy, CURLOPT_URL, URL);
139 test_setopt(pooh.easy, CURLOPT_VERBOSE, 1L);
142 test_setopt(pooh.easy, CURLOPT_HEADER, 1L);
146 mime = curl_mime_init(pooh.easy);
159 /* Bind mime data to its easy handle. */
161 test_setopt(pooh.easy, CURLOPT_MIMEPOST, mime);
175 test_setopt(pooh.easy, CURLOPT_READFUNCTION, read_callback);
178 test_setopt(pooh.easy, CURLOPT_HTTPPOST, formpost);
184 mres = curl_multi_add_handle(multi, pooh.easy);
207 curl_easy_pause(pooh.easy, CURLPAUSE_CONT);
241 curl_multi_remove_handle(multi, pooh.easy);
245 /* Use the easy interface. */
246 test_setopt(pooh.easy, CURLOPT_XFERINFODATA, &pooh);
247 test_setopt(pooh.easy, CURLOPT_XFERINFOFUNCTION, xferinfo);
248 test_setopt(pooh.easy, CURLOPT_NOPROGRESS, 0L);
249 result = curl_easy_perform(pooh.easy);
255 curl_easy_cleanup(pooh.easy);