Lines Matching refs:curls
31 CURL *curls = NULL; in test() local
37 easy_init(curls); in test()
39 mime = curl_mime_init(curls); in test()
44 easy_setopt(curls, CURLOPT_URL, URL); in test()
45 easy_setopt(curls, CURLOPT_HEADER, 1L); in test()
46 easy_setopt(curls, CURLOPT_VERBOSE, 1L); in test()
47 easy_setopt(curls, CURLOPT_MIMEPOST, mime); in test()
48 easy_setopt(curls, CURLOPT_NOPROGRESS, 1L); in test()
50 res = curl_easy_perform(curls); in test()
56 res = curl_easy_perform(curls); in test()
60 curl_easy_cleanup(curls); in test()