Lines Matching refs:handle
100 CURL *handle = NULL; in test() local
104 handle = curl_easy_init(); in test()
105 if(!handle) { in test()
110 test_setopt(handle, CURLOPT_URL, URL); in test()
111 test_setopt(handle, CURLOPT_WILDCARDMATCH, 1L); in test()
112 test_setopt(handle, CURLOPT_CHUNK_BGN_FUNCTION, chunk_bgn); in test()
113 test_setopt(handle, CURLOPT_CHUNK_END_FUNCTION, chunk_end); in test()
114 test_setopt(handle, CURLOPT_CHUNK_DATA, &chunk_data); in test()
116 res = curl_easy_perform(handle); in test()
119 if(handle) in test()
120 curl_easy_cleanup(handle); in test()