HomeSort by relevance Sort by last modified time
    Searched refs:http_handle (Results 1 - 4 of 4) sorted by null

  /external/curl/docs/examples/
multi-single.c 51 CURL *http_handle; local
59 http_handle = curl_easy_init();
62 curl_easy_setopt(http_handle, CURLOPT_URL, "http://www.example.com/");
68 curl_multi_add_handle(multi_handle, http_handle);
102 curl_multi_remove_handle(multi_handle, http_handle);
104 curl_easy_cleanup(http_handle);
multi-double.c 41 CURL *http_handle; local
47 http_handle = curl_easy_init();
51 curl_easy_setopt(http_handle, CURLOPT_URL, "http://www.example.com/");
60 curl_multi_add_handle(multi_handle, http_handle);
139 curl_easy_cleanup(http_handle);
multi-debugcallback.c 128 CURL *http_handle; local
133 http_handle = curl_easy_init();
136 curl_easy_setopt(http_handle, CURLOPT_URL, "http://www.example.com/");
138 curl_easy_setopt(http_handle, CURLOPT_DEBUGFUNCTION, my_trace);
139 curl_easy_setopt(http_handle, CURLOPT_VERBOSE, 1L);
145 curl_multi_add_handle(multi_handle, http_handle);
225 curl_easy_cleanup(http_handle);
  /external/curl/tests/libtest/
lib560.c 42 CURL *http_handle = NULL; local
54 easy_init(http_handle);
57 easy_setopt(http_handle, CURLOPT_URL, URL);
58 easy_setopt(http_handle, CURLOPT_HEADER, 1L);
59 easy_setopt(http_handle, CURLOPT_SSL_VERIFYPEER, 0L);
60 easy_setopt(http_handle, CURLOPT_SSL_VERIFYHOST, 0L);
66 multi_add_handle(multi_handle, http_handle);
109 curl_easy_cleanup(http_handle);

Completed in 53 milliseconds