Lines Matching refs:ch
34 CURL *ch = NULL; in test() local
37 easy_init(ch); in test()
39 easy_setopt(ch, CURLOPT_URL, URL); in test()
40 easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2); in test()
41 res = curl_easy_perform(ch); in test()
45 curl_easy_reset(ch); in test()
47 easy_setopt(ch, CURLOPT_URL, URL); in test()
48 easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2); in test()
49 easy_setopt(ch, CURLOPT_COOKIEJAR, libtest_arg3); in test()
50 res = curl_easy_perform(ch); in test()
53 curl_easy_cleanup(ch); in test()