Home
last modified time | relevance | path

Searched refs:res (Results 226 – 250 of 566) sorted by relevance

12345678910>>...23

/curl/tests/libtest/
H A Dlib513.c40 CURLcode res = CURLE_OK; in test() local
76 res = curl_easy_perform(curl); in test()
84 return res; in test()
H A Dlib2304.c116 CURLcode res = CURLE_OK; in test() local
128 res = curl_easy_perform(curl); in test()
129 fprintf(stderr, "curl_easy_perform() returned %d\n", res); in test()
130 if(res == CURLE_OK) in test()
137 return res; in test()
H A Dlib1940.c89 CURLcode res = CURLE_OK; in test() local
104 res = curl_easy_perform(easy); in test()
105 if(res) in test()
119 return res; in test()
H A Dlib1933.c31 CURLcode res = TEST_ERR_MAJOR_BAD; in test() local
58 res = curl_easy_perform(curl); in test()
67 return res; in test()
H A Dlib1934.c31 CURLcode res = TEST_ERR_MAJOR_BAD; in test() local
59 res = curl_easy_perform(curl); in test()
68 return res; in test()
H A Dlib1935.c31 CURLcode res = TEST_ERR_MAJOR_BAD; in test() local
59 res = curl_easy_perform(curl); in test()
68 return res; in test()
H A Dlib1936.c31 CURLcode res = TEST_ERR_MAJOR_BAD; in test() local
59 res = curl_easy_perform(curl); in test()
68 return res; in test()
H A Dlib1509.c40 CURLcode res = CURLE_OK; in test() local
61 res = TEST_ERR_MAJOR_BAD; in test()
70 res = TEST_ERR_MAJOR_BAD; in test()
82 return res; in test()
/curl/docs/libcurl/opts/
H A DCURLINFO_HTTPAUTH_AVAIL.md42 CURLcode res;
45 res = curl_easy_perform(curl);
47 if(!res) {
50 res = curl_easy_getinfo(curl, CURLINFO_HTTPAUTH_AVAIL, &auth);
51 if(!res) {
H A DCURLINFO_PRIMARY_PORT.md45 CURLcode res;
47 res = curl_easy_perform(curl);
48 if(res == CURLE_OK) {
50 res = curl_easy_getinfo(curl, CURLINFO_PRIMARY_PORT, &port);
51 if(!res)
H A DCURLINFO_PROXYAUTH_AVAIL.md42 CURLcode res;
46 res = curl_easy_perform(curl);
48 if(!res) {
51 res = curl_easy_getinfo(curl, CURLINFO_PROXYAUTH_AVAIL, &auth);
52 if(!res) {
H A DCURLINFO_QUEUE_TIME_T.md45 CURLcode res;
48 res = curl_easy_perform(curl);
49 if(CURLE_OK == res) {
50 res = curl_easy_getinfo(curl, CURLINFO_QUEUE_TIME_T, &queue);
51 if(CURLE_OK == res) {
H A DCURLINFO_SIZE_DOWNLOAD.md47 CURLcode res;
51 res = curl_easy_perform(curl);
53 if(!res) {
56 res = curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD, &dl);
57 if(!res) {
H A DCURLINFO_STARTTRANSFER_TIME.md47 CURLcode res;
50 res = curl_easy_perform(curl);
51 if(CURLE_OK == res) {
52 res = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME, &start);
53 if(CURLE_OK == res) {
H A DCURLINFO_STARTTRANSFER_TIME_T.md48 CURLcode res;
51 res = curl_easy_perform(curl);
52 if(CURLE_OK == res) {
53 res = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME_T, &start);
54 if(CURLE_OK == res) {
H A DCURLOPT_FILETIME.md49 CURLcode res;
53 res = curl_easy_perform(curl);
54 if(CURLE_OK == res) {
56 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
57 if((CURLE_OK == res) && (filetime >= 0)) {
H A DCURLINFO_NUM_CONNECTS.md42 CURLcode res;
45 res = curl_easy_perform(curl);
46 if(res == CURLE_OK) {
48 res = curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &connects);
49 if(!res)
H A DCURLINFO_ACTIVESOCKET.md50 CURLcode res;
56 res = curl_easy_perform(curl);
57 if(res != CURLE_OK) {
58 printf("Error: %s\n", curl_easy_strerror(res));
64 res = curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sockfd);
65 if(!res && sockfd != CURL_SOCKET_BAD) {
H A DCURLINFO_LASTSOCKET.md50 CURLcode res;
56 res = curl_easy_perform(curl);
57 if(res != CURLE_OK) {
58 printf("Error: %s\n", curl_easy_strerror(res));
64 res = curl_easy_getinfo(curl, CURLINFO_LASTSOCKET, &sockfd);
65 if(!res && sockfd != -1) {
H A DCURLINFO_FTP_ENTRY_PATH.md44 CURLcode res;
47 res = curl_easy_perform(curl);
49 if(!res) {
52 res = curl_easy_getinfo(curl, CURLINFO_FTP_ENTRY_PATH, &ep);
53 if(!res && ep) {
H A DCURLINFO_PRETRANSFER_TIME.md49 CURLcode res;
52 res = curl_easy_perform(curl);
53 if(CURLE_OK == res) {
54 res = curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME, &pretransfer);
55 if(CURLE_OK == res) {
/curl/docs/examples/
H A Danyauthput.c86 CURLcode res; in main() local
142 res = curl_easy_perform(curl); in main()
144 if(res != CURLE_OK) in main()
146 curl_easy_strerror(res)); in main()
H A Dhsts-preload.c83 CURLcode res; in main() local
108 res = curl_easy_perform(curl); in main()
110 if(res != CURLE_OK) in main()
112 curl_easy_strerror(res)); in main()
H A Dwebsocket.c111 CURLcode res; in main() local
120 res = curl_easy_perform(curl); in main()
122 if(res != CURLE_OK) in main()
124 curl_easy_strerror(res)); in main()
/curl/docs/libcurl/
H A Dcurl_easy_strerror.md43 CURLcode res;
46 res = curl_easy_perform(curl);
48 if(res != CURLE_OK)
50 curl_easy_strerror(res));

Completed in 44 milliseconds

12345678910>>...23