/third_party/curl/tests/libtest/ |
H A D | lib500.c | 97 res = curl_easy_getinfo(curl, CURLINFO_PRIMARY_IP, &ipstr); in test() 107 curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME_T, &time_namelookup); in test() 108 curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME_T, &time_connect); in test() 109 curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME_T, in test() 111 curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME_T, in test() 113 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &time_total); in test()
|
H A D | lib1518.c | 80 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &curlResponseCode); in test() 81 curl_easy_getinfo(curl, CURLINFO_REDIRECT_COUNT, &curlRedirectCount); in test() 82 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &effectiveUrl); in test() 83 curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &redirectUrl); in test()
|
H A D | lib1536.c | 43 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test() 45 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 68 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test() 70 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 94 res = curl_easy_getinfo(dupe, CURLINFO_SCHEME, &scheme); in test() 96 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 113 res = curl_easy_getinfo(curl, CURLINFO_SCHEME, &scheme); in test() 115 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test()
|
H A D | lib1534.c | 43 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in test() 45 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 69 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in test() 71 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 94 res = curl_easy_getinfo(dupe, CURLINFO_FILETIME, &filetime); in test() 96 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 113 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in test() 115 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test()
|
H A D | lib1535.c | 44 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 47 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 71 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 74 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 98 res = curl_easy_getinfo(dupe, CURLINFO_PROTOCOL, &protocol); in test() 101 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 119 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 122 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test()
|
H A D | lib3010.c | 46 curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &follow_url); in test() 47 curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after); in test() 58 curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after); in test()
|
H A D | lib1511.c | 49 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); in test() 62 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); in test()
|
H A D | lib1532.c | 49 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test() 51 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test() 65 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test() 67 fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n", in test()
|
H A D | lib677.c | 65 curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); in test() 75 curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); in test()
|
H A D | lib1907.c | 49 if(!curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &url_after)) in test()
|
H A D | lib1558.c | 48 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); in test() 51 fprintf(stderr, "curl_easy_getinfo() returned %d (%s)\n", in test()
|
/third_party/curl/docs/examples/ |
H A D | chkspeed.c | 30 * After successful download we use curl_easy_getinfo() calls to get the 182 res = curl_easy_getinfo(curl_handle, CURLINFO_SIZE_DOWNLOAD_T, &val); in main() 187 res = curl_easy_getinfo(curl_handle, CURLINFO_TOTAL_TIME_T, &val); in main() 193 res = curl_easy_getinfo(curl_handle, CURLINFO_SPEED_DOWNLOAD_T, &val); in main() 200 res = curl_easy_getinfo(curl_handle, CURLINFO_NAMELOOKUP_TIME_T, &val); in main() 206 res = curl_easy_getinfo(curl_handle, CURLINFO_CONNECT_TIME_T, &val); in main()
|
H A D | getredirect.c | 51 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); in main() 58 res = curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &location); in main()
|
H A D | crawler.c | 202 curl_easy_getinfo(handle, CURLINFO_PRIVATE, &mem); in main() 203 curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, &url); in main() 206 curl_easy_getinfo(handle, CURLINFO_RESPONSE_CODE, &res_status); in main() 209 curl_easy_getinfo(handle, CURLINFO_CONTENT_TYPE, &ctype); in main()
|
H A D | fileupload.c | 76 curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed_upload); in main() 77 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total_time); in main()
|
H A D | ftpgetinfo.c | 69 /* https://curl.se/libcurl/c/curl_easy_getinfo.html */ in main() 70 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime); in main() 75 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, in main()
|
H A D | multi-event.c | 106 curl_easy_getinfo(easy_handle, CURLINFO_EFFECTIVE_URL, &done_url); in check_multi_info() 107 curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file); in check_multi_info()
|
H A D | multi-uv.c | 116 curl_easy_getinfo(easy_handle, CURLINFO_EFFECTIVE_URL, &done_url); in check_multi_info() 117 curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file); in check_multi_info()
|
H A D | getinfo.c | 44 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct); in main()
|
/third_party/curl/src/ |
H A D | tool_writeout.c | 165 if(!curl_easy_getinfo(per->curl, wovar->ci, &us)) in writeTime() 201 if(curl_easy_getinfo(per->curl, CURLINFO_EFFECTIVE_URL, &url)) in urlpart() 286 if(!curl_easy_getinfo(per->curl, CURLINFO_HTTP_VERSION, &version)) { in writeString() 299 if(!curl_easy_getinfo(per->curl, wovar->ci, &strinfo) && strinfo) in writeString() 431 if(!curl_easy_getinfo(per->curl, wovar->ci, &longinfo)) in writeLong() 490 if(!curl_easy_getinfo(per->curl, wovar->ci, &offinfo)) in writeOffset() 519 CURLcode res = curl_easy_getinfo(per->curl, CURLINFO_CERTINFO, &certinfo); in ourWriteOut()
|
/third_party/curl/tests/http/clients/ |
H A D | h2-upgrade-extreme.c | 72 if(!curl_easy_getinfo(handle, CURLINFO_XFER_ID, &xfer_id) && xfer_id >= 0) { in debug_cb() 73 if(!curl_easy_getinfo(handle, CURLINFO_CONN_ID, &conn_id) && in debug_cb() 218 curl_easy_getinfo(msg->easy_handle, CURLINFO_XFER_ID, &xfer_id); in main() 219 curl_easy_getinfo(msg->easy_handle, CURLINFO_RESPONSE_CODE, &status); in main()
|
H A D | tls-session-reuse.c | 73 if(!curl_easy_getinfo(handle, CURLINFO_XFER_ID, &xfer_id) && xfer_id >= 0) { in debug_cb() 74 if(!curl_easy_getinfo(handle, CURLINFO_CONN_ID, &conn_id) && in debug_cb() 274 curl_easy_getinfo(msg->easy_handle, CURLINFO_XFER_ID, &xfer_id); in main() 275 curl_easy_getinfo(msg->easy_handle, CURLINFO_RESPONSE_CODE, &status); in main()
|
H A D | h2-pausing.c | 74 if(!curl_easy_getinfo(handle, CURLINFO_XFER_ID, &xfer_id) && xfer_id >= 0) { in debug_cb() 75 if(!curl_easy_getinfo(handle, CURLINFO_CONN_ID, &conn_id) && in debug_cb() 159 if(curl_easy_getinfo(handle->h, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, in cb()
|
/third_party/elfutils/debuginfod/ |
H A D | debuginfod-client.c | 226 CURLcode curl_res = curl_easy_getinfo (d->handle, in debuginfod_write_callback() 1461 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server() 1468 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server() 1496 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server() 1503 curl_res = curl_easy_getinfo(target_handle, in debuginfod_query_server() 1577 ok0 = curl_easy_getinfo (msg->easy_handle, in debuginfod_query_server() 1601 CURLcode ok1 = curl_easy_getinfo (target_handle, in debuginfod_query_server() 1604 CURLcode ok2 = curl_easy_getinfo (target_handle, in debuginfod_query_server() 1633 CURLcode ok3 = curl_easy_getinfo (target_handle, in debuginfod_query_server() 1699 CURLcode curl_res = curl_easy_getinfo(verified_handl in debuginfod_query_server() [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | test_long_header.c | 145 if (CURLE_OK != curl_easy_getinfo (c, CURLINFO_RESPONSE_CODE, &code)) in testLongUrlGet() 221 if (CURLE_OK != curl_easy_getinfo (c, CURLINFO_RESPONSE_CODE, &code)) in testLongHeaderGet()
|