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