Lines Matching refs:curls
33 CURL *curls = NULL; in test() local
39 easy_init(curls); in test()
41 mime = curl_mime_init(curls); in test()
46 easy_setopt(curls, CURLOPT_URL, URL); in test()
47 easy_setopt(curls, CURLOPT_HEADER, 1L); in test()
48 easy_setopt(curls, CURLOPT_VERBOSE, 1L); in test()
49 easy_setopt(curls, CURLOPT_MIMEPOST, mime); in test()
50 easy_setopt(curls, CURLOPT_NOPROGRESS, 1L); in test()
52 res = curl_easy_perform(curls); in test()
58 res = curl_easy_perform(curls); in test()
62 curl_easy_cleanup(curls); in test()