Lines Matching refs:curls
45 CURL *curls = NULL; in test() local
60 easy_init(curls); in test()
62 mime = curl_mime_init(curls); in test()
67 easy_setopt(curls, CURLOPT_URL, URL); in test()
68 easy_setopt(curls, CURLOPT_HEADER, 1L); in test()
69 easy_setopt(curls, CURLOPT_VERBOSE, 1L); in test()
70 easy_setopt(curls, CURLOPT_MIMEPOST, mime); in test()
71 easy_setopt(curls, CURLOPT_USERPWD, "u:s"); in test()
72 easy_setopt(curls, CURLOPT_XFERINFOFUNCTION, xferinfo); in test()
73 easy_setopt(curls, CURLOPT_NOPROGRESS, 1L); in test()
75 multi_add_handle(multi, curls); in test()
100 curl_multi_remove_handle(multi, curls); in test()
102 curl_easy_cleanup(curls); in test()