Lines Matching refs:handle
42 CURL *handle = NULL; in test() local
52 easy_init(handle); in test()
54 easy_setopt(handle, CURLOPT_URL, URL); in test()
55 easy_setopt(handle, CURLOPT_WILDCARDMATCH, 1L); in test()
56 easy_setopt(handle, CURLOPT_VERBOSE, 1L); in test()
58 res = curl_easy_perform(handle); in test()
62 res = curl_easy_perform(handle); in test()
66 duphandle = curl_easy_duphandle(handle); in test()
69 curl_easy_cleanup(handle); in test()
70 handle = duphandle; in test()
74 multi_add_handle(mhandle, handle); in test()
112 curl_easy_cleanup(handle); in test()