Lines Matching refs:curls
48 CURL *curls = NULL; in test() local
63 easy_init(curls); in test()
65 mime = curl_mime_init(curls); in test()
70 easy_setopt(curls, CURLOPT_URL, URL); in test()
71 easy_setopt(curls, CURLOPT_HEADER, 1L); in test()
72 easy_setopt(curls, CURLOPT_VERBOSE, 1L); in test()
73 easy_setopt(curls, CURLOPT_MIMEPOST, mime); in test()
74 easy_setopt(curls, CURLOPT_USERPWD, "u:s"); in test()
75 easy_setopt(curls, CURLOPT_XFERINFOFUNCTION, xferinfo); in test()
76 easy_setopt(curls, CURLOPT_NOPROGRESS, 1L); in test()
80 test_setopt(curls, CURLOPT_DEBUGDATA, &libtest_debug_config); in test()
81 easy_setopt(curls, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); in test()
82 easy_setopt(curls, CURLOPT_VERBOSE, 1L); in test()
84 multi_add_handle(multi, curls); in test()
110 curl_multi_remove_handle(multi, curls); in test()
112 curl_easy_cleanup(curls); in test()