/third_party/ejdb/src/jbr/tests/ |
D | jbr_test1.c | 67 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 84 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 102 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 129 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 143 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 169 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 190 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 208 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 218 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() 236 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); in jbr_test1_1() [all …]
|
/third_party/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 | lib3010.c | 44 curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &follow_url); in test() 45 curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after); in test() 56 curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after); 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 | lib677.c | 68 curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); in test() 78 curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); 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()
|
/third_party/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 | 182 curl_easy_getinfo(handle, CURLINFO_PRIVATE, &mem); in main() 183 curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, &url); in main() 186 curl_easy_getinfo(handle, CURLINFO_RESPONSE_CODE, &res_status); in main() 189 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()
|
D | getreferrer.c | 48 res = curl_easy_getinfo(curl, CURLINFO_REFERER, &hdr); in main()
|
/third_party/curl/src/ |
D | tool_writeout.c | 131 if(!curl_easy_getinfo(per->curl, wovar->ci, &us)) in writeTime() 168 if(!curl_easy_getinfo(per->curl, CURLINFO_HTTP_VERSION, &version) && in writeString() 176 if(!curl_easy_getinfo(per->curl, wovar->ci, &strinfo) && strinfo) in writeString() 235 if(!curl_easy_getinfo(per->curl, wovar->ci, &longinfo)) in writeLong() 290 if(!curl_easy_getinfo(per->curl, wovar->ci, &offinfo)) in writeOffset()
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
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()
|
/third_party/curl/tests/data/ |
D | test1521 | 19 Test all curl_easy_setopt and curl_easy_getinfo options
|