Lines Matching full:easy
67 CURL *easy = NULL; in test() local
77 * easy handle. in test()
85 easy = curl_easy_init(); in test()
88 test_setopt(easy, CURLOPT_URL, URL); in test()
91 test_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
94 test_setopt(easy, CURLOPT_HEADER, 1L); in test()
102 mime = curl_mime_init(easy); in test()
116 /* Bind mime data to its easy handle. */ in test()
117 test_setopt(easy, CURLOPT_MIMEPOST, mime); in test()
120 easy2 = curl_easy_duphandle(easy); in test()
128 easy handle. */ in test()
133 res = curl_easy_perform(easy); in test()
161 curl_easy_cleanup(easy); in test()