Lines Matching refs:easy
41 CURL *easy = NULL; in test() local
46 res_easy_init(easy); in test()
48 easy_setopt(easy, CURLOPT_URL, URL); in test()
52 easy_setopt(easy, CURLOPT_DEBUGDATA, &libtest_debug_config); in test()
53 easy_setopt(easy, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); in test()
54 easy_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
56 res = curl_easy_perform(easy); in test()
60 res = curl_easy_perform(easy); in test()
68 res = curl_easy_perform(easy); in test()
72 easy_setopt(easy, CURLOPT_MAXLIFETIME_CONN, 1L); in test()
74 res = curl_easy_perform(easy); in test()
80 curl_easy_cleanup(easy); in test()