Home
last modified time | relevance | path

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

123

/third_party/ejdb/src/jbr/tests/
Djbr_test1.c67 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/
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()
Dlib3010.c44 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()
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()
Dlib677.c68 curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); in test()
78 curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); 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()
/third_party/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.c182 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()
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()
Dgetreferrer.c48 res = curl_easy_getinfo(curl, CURLINFO_REFERER, &hdr); in main()
/third_party/curl/src/
Dtool_writeout.c131 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/
Dtest_long_header.c145 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/
Dtest152119 Test all curl_easy_setopt and curl_easy_getinfo options

123