Lines Matching refs:easy
36 CURL *easy; member
88 curl_easy_pause(pooh->easy, CURLPAUSE_CONT); in xferinfo()
127 pooh.easy = curl_easy_init(); in test()
130 test_setopt(pooh.easy, CURLOPT_URL, URL); in test()
133 test_setopt(pooh.easy, CURLOPT_VERBOSE, 1L); in test()
136 test_setopt(pooh.easy, CURLOPT_HEADER, 1L); in test()
140 mime = curl_mime_init(pooh.easy); in test()
155 test_setopt(pooh.easy, CURLOPT_MIMEPOST, mime); in test()
171 test_setopt(pooh.easy, CURLOPT_READFUNCTION, read_callback); in test()
175 test_setopt(pooh.easy, CURLOPT_HTTPPOST, formpost); in test()
182 mres = curl_multi_add_handle(multi, pooh.easy); in test()
205 curl_easy_pause(pooh.easy, CURLPAUSE_CONT); in test()
238 curl_multi_remove_handle(multi, pooh.easy); in test()
243 test_setopt(pooh.easy, CURLOPT_XFERINFODATA, &pooh); in test()
244 test_setopt(pooh.easy, CURLOPT_XFERINFOFUNCTION, xferinfo); in test()
245 test_setopt(pooh.easy, CURLOPT_NOPROGRESS, 0L); in test()
246 res = curl_easy_perform(pooh.easy); in test()
251 curl_easy_cleanup(pooh.easy); in test()