Lines Matching refs:ch
34 CURL *ch = NULL; in test() local
52 ch = curl_easy_init(); in test()
53 if(!ch) in test()
56 curl_easy_setopt(ch, CURLOPT_SHARE, sh); in test()
57 curl_easy_setopt(ch, CURLOPT_URL, URL); in test()
58 curl_easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2); in test()
59 curl_easy_setopt(ch, CURLOPT_COOKIEJAR, libtest_arg2); in test()
61 curl_multi_add_handle(cm, ch); in test()
89 curl_easy_setopt(ch, CURLOPT_COOKIELIST, "FLUSH"); in test()
90 curl_easy_setopt(ch, CURLOPT_SHARE, NULL); in test()
92 curl_multi_remove_handle(cm, ch); in test()
94 curl_easy_cleanup(ch); in test()