/external/curl/src/ |
D | tool_writeout.c | 147 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/ |
D | lib500.c | 95 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()
|
D | lib1518.c | 51 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()
|
D | lib1535.c | 41 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()
|
D | lib1536.c | 41 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()
|
D | lib1534.c | 41 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()
|
D | lib1511.c | 47 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); in test() 60 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); in test()
|
D | lib1532.c | 47 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test() 63 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test()
|
D | lib1907.c | 47 if(!curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &url_after)) in test()
|
D | lib1594.c | 46 res = curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry); in test()
|
D | lib1558.c | 45 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test()
|
D | lib566.c | 52 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, in test()
|
/external/curl/docs/examples/ |
D | chkspeed.c | 171 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()
|
D | getredirect.c | 49 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); in main() 56 res = curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &location); in main()
|
D | crawler.c | 181 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()
|
D | fileupload.c | 75 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()
|
D | ftpgetinfo.c | 68 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in main() 73 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, in main()
|
D | multi-uv.c | 114 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()
|
D | multi-event.c | 104 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()
|
D | getinfo.c | 42 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); in main()
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | curl_http_request.cc | 90 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/ |
D | curl_api.cc | 89 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/ |
D | debuginfod-client.c | 523 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/ |
D | http_upload.cc | 167 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/ |
D | test1521 | 19 Test all curl_easy_setopt and curl_easy_getinfo options
|