Home
last modified time | relevance | path

Searched refs:curl_easy_getinfo (Results 1 – 25 of 72) sorted by relevance

123

/external/curl/src/
Dtool_writeout.c147 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &stringp)) in ourWriteOut()
153 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &longinfo)) in ourWriteOut()
158 curl_easy_getinfo(curl, CURLINFO_HTTP_CONNECTCODE, in ourWriteOut()
164 curl_easy_getinfo(curl, CURLINFO_HEADER_SIZE, &longinfo)) in ourWriteOut()
169 curl_easy_getinfo(curl, CURLINFO_REQUEST_SIZE, &longinfo)) in ourWriteOut()
174 curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &longinfo)) in ourWriteOut()
179 curl_easy_getinfo(curl, CURLINFO_REDIRECT_COUNT, &longinfo)) in ourWriteOut()
184 curl_easy_getinfo(curl, CURLINFO_REDIRECT_TIME, in ourWriteOut()
190 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &doubleinfo)) in ourWriteOut()
195 curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME, in ourWriteOut()
[all …]
/external/curl/tests/libtest/
Dlib500.c95 res = curl_easy_getinfo(curl, CURLINFO_PRIMARY_IP, &ipstr); in test()
105 curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME_T, &time_namelookup); in test()
106 curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME_T, &time_connect); in test()
107 curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME_T, in test()
109 curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME_T, in test()
111 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &time_total); in test()
Dlib1518.c51 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &curlResponseCode); in test()
52 curl_easy_getinfo(curl, CURLINFO_REDIRECT_COUNT, &curlRedirectCount); in test()
53 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &effectiveUrl); in test()
54 curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &redirectUrl); in test()
Dlib1535.c41 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test()
66 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test()
91 res = curl_easy_getinfo(dupe, CURLINFO_PROTOCOL, &protocol); in test()
110 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test()
Dlib1536.c41 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test()
66 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test()
92 res = curl_easy_getinfo(dupe, CURLINFO_SCHEME, &scheme); in test()
111 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test()
Dlib1534.c41 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in test()
67 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in test()
92 res = curl_easy_getinfo(dupe, CURLINFO_FILETIME, &filetime); in test()
111 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in test()
Dlib1511.c47 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); in test()
60 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); in test()
Dlib1532.c47 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test()
63 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test()
Dlib1907.c47 if(!curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &url_after)) in test()
Dlib1594.c46 res = curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry); in test()
Dlib1558.c45 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test()
Dlib566.c52 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, in test()
/external/curl/docs/examples/
Dchkspeed.c171 res = curl_easy_getinfo(curl_handle, CURLINFO_SIZE_DOWNLOAD_T, &val); in main()
176 res = curl_easy_getinfo(curl_handle, CURLINFO_TOTAL_TIME_T, &val); in main()
182 res = curl_easy_getinfo(curl_handle, CURLINFO_SPEED_DOWNLOAD_T, &val); in main()
189 res = curl_easy_getinfo(curl_handle, CURLINFO_NAMELOOKUP_TIME_T, &val); in main()
195 res = curl_easy_getinfo(curl_handle, CURLINFO_CONNECT_TIME_T, &val); in main()
Dgetredirect.c49 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); in main()
56 res = curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &location); in main()
Dcrawler.c181 curl_easy_getinfo(handle, CURLINFO_PRIVATE, &mem); in main()
182 curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, &url); in main()
185 curl_easy_getinfo(handle, CURLINFO_RESPONSE_CODE, &res_status); in main()
188 curl_easy_getinfo(handle, CURLINFO_CONTENT_TYPE, &ctype); in main()
Dfileupload.c75 curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed_upload); in main()
76 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total_time); in main()
Dftpgetinfo.c68 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in main()
73 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, in main()
Dmulti-uv.c114 curl_easy_getinfo(easy_handle, CURLINFO_EFFECTIVE_URL, &done_url); in check_multi_info()
115 curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file); in check_multi_info()
Dmulti-event.c104 curl_easy_getinfo(easy_handle, CURLINFO_EFFECTIVE_URL, &done_url); in check_multi_info()
105 curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file); in check_multi_info()
Dgetinfo.c42 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); in main()
/external/tensorflow/tensorflow/core/platform/cloud/
Dcurl_http_request.cc90 CURLcode curl_easy_getinfo(CURL* curl, CURLINFO info, in curl_easy_getinfo() function in tensorflow::__anon35ba19030111::LibCurlProxy
92 return ::curl_easy_getinfo(curl, info, value); in curl_easy_getinfo()
95 CURLcode curl_easy_getinfo(CURL* curl, CURLINFO info, in curl_easy_getinfo() function in tensorflow::__anon35ba19030111::LibCurlProxy
97 return ::curl_easy_getinfo(curl, info, value); in curl_easy_getinfo()
442 CHECK_CURL_OK(libcurl_->curl_easy_getinfo(curl_, CURLINFO_SIZE_DOWNLOAD, in Send()
445 CHECK_CURL_OK(libcurl_->curl_easy_getinfo(curl_, CURLINFO_RESPONSE_CODE, in Send()
583 const auto lookup_time_status = that->libcurl_->curl_easy_getinfo( in ProgressCallback()
587 const auto connect_time_status = that->libcurl_->curl_easy_getinfo( in ProgressCallback()
591 const auto pretransfer_time_status = that->libcurl_->curl_easy_getinfo( in ProgressCallback()
595 const auto starttransfer_time_status = that->libcurl_->curl_easy_getinfo( in ProgressCallback()
[all …]
/external/libbrillo/brillo/http/
Dcurl_api.cc89 CURLcode code = curl_easy_getinfo(curl, info, &data); in EasyGetInfoInt()
99 return curl_easy_getinfo(curl, info, value); in EasyGetInfoDbl()
107 CURLcode code = curl_easy_getinfo(curl, info, &data); in EasyGetInfoStr()
118 return curl_easy_getinfo(curl, info, value); in EasyGetInfoPtr()
/external/elfutils/debuginfod/
Ddebuginfod-client.c523 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server()
530 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server()
539 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server()
546 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server()
617 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server()
637 CURLcode curl_res = curl_easy_getinfo(verified_handle, CURLINFO_FILETIME, (void*) &mtime); in debuginfod_query_server()
/external/google-breakpad/src/common/linux/
Dhttp_upload.cc167 CURLcode (*curl_easy_getinfo)(CURL *, CURLINFO, ...); in SendRequest() local
168 *(void**) (&curl_easy_getinfo) = dlsym(curl_lib, "curl_easy_getinfo"); in SendRequest()
169 (*curl_easy_getinfo)(curl, CURLINFO_RESPONSE_CODE, response_code); in SendRequest()
/external/curl/tests/data/
Dtest152119 Test all curl_easy_setopt and curl_easy_getinfo options

123