Home
last modified time | relevance | path

Searched refs:res (Results 176 – 200 of 566) sorted by relevance

12345678910>>...23

/curl/tests/libtest/
H A Dlib1552.c38 CURLcode res = CURLE_OK; in test() local
67 res = TEST_ERR_MAJOR_BAD; in test()
92 if(res) in test()
93 i = res; in test()
H A Dlib1510.c36 CURLcode res = CURLE_OK; in test() local
85 res = curl_easy_perform(curl); in test()
86 if(res) in test()
102 return res; in test()
H A Dlib516.c31 CURLcode res = CURLE_OK; in test() local
54 res = curl_easy_perform(curl); in test()
62 return res; in test()
H A Dlib523.c30 CURLcode res; in test() local
51 res = curl_easy_perform(curl); in test()
58 return res; in test()
H A Dlib521.c30 CURLcode res; in test() local
50 res = curl_easy_perform(curl); in test()
57 return res; in test()
H A Dlib542.c39 CURLcode res = CURLE_OK; in test() local
67 res = curl_easy_perform(curl); in test()
74 return res; in test()
H A Dlib549.c35 CURLcode res; in test() local
59 res = curl_easy_perform(curl); in test()
66 return res; in test()
H A Dlib515.c31 CURLcode res = CURLE_OK; in test() local
53 res = curl_easy_perform(curl); in test()
61 return res; in test()
H A Dlib590.c43 CURLcode res; in test() local
65 res = curl_easy_perform(curl); in test()
72 return res; in test()
H A Dlib1537.c32 CURLcode res = CURLE_OK; in test() local
53 res = TEST_ERR_MAJOR_BAD; in test()
67 res = TEST_ERR_MAJOR_BAD; in test()
90 return res; in test()
H A Dlib504.c42 CURLcode res = CURLE_OK; in test() local
83 res = TEST_ERR_SUCCESS; /* this is where we should be */ in test()
85 res = TEST_ERR_FAILURE; /* not correct */ in test()
114 return res; in test()
H A Dlib543.c38 CURLcode res = CURLE_OK; in test() local
45 res = TEST_ERR_MAJOR_BAD; in test()
71 return res; in test()
H A Dlib3025.c30 CURLcode res; in test() local
52 res = curl_easy_perform(curl); in test()
60 return res; in test()
H A Dlib514.c31 CURLcode res = CURLE_OK; in test() local
72 res = curl_easy_perform(curl); in test()
80 return res; in test()
H A Dlib591.c42 CURLcode res = CURLE_OK; in test() local
59 if(res) { in test()
61 return res; in test()
138 res = msg->data.result; in test()
151 return res; in test()
H A Dlib1529.c32 CURLcode res = CURLE_FAILED_INIT; in test() local
55 res = curl_easy_perform(curl); in test()
62 return res; in test()
/curl/lib/
H A Dmemdebug.c357 if(source && (0 == res)) in curl_dbg_socketpair()
362 return res; in curl_dbg_socketpair()
392 int res = sclose(sockfd); in curl_dbg_sclose() local
394 return res; in curl_dbg_sclose()
400 FILE *res = fopen(file, mode); in curl_dbg_fopen() local
406 return res; in curl_dbg_fopen()
412 FILE *res = fdopen(filedes, mode); in curl_dbg_fdopen() local
416 return res; in curl_dbg_fdopen()
421 int res; in curl_dbg_fclose() local
429 res = fclose(file); in curl_dbg_fclose()
[all …]
/curl/docs/libcurl/opts/
H A DCURLINFO_SIZE_UPLOAD.md44 CURLcode res;
48 res = curl_easy_perform(curl);
50 if(!res) {
52 res = curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD, &ul);
53 if(!res) {
H A DCURLINFO_SPEED_DOWNLOAD.md44 CURLcode res;
48 res = curl_easy_perform(curl);
50 if(!res) {
52 res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD, &speed);
53 if(!res) {
H A DCURLINFO_SPEED_UPLOAD.md42 CURLcode res;
46 res = curl_easy_perform(curl);
48 if(!res) {
50 res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD, &speed);
51 if(!res) {
H A DCURLINFO_HEADER_SIZE.md43 CURLcode res;
45 res = curl_easy_perform(curl);
46 if(res == CURLE_OK) {
48 res = curl_easy_getinfo(curl, CURLINFO_HEADER_SIZE, &size);
49 if(!res)
H A DCURLINFO_REQUEST_SIZE.md41 CURLcode res;
43 res = curl_easy_perform(curl);
44 if(res == CURLE_OK) {
46 res = curl_easy_getinfo(curl, CURLINFO_REQUEST_SIZE, &req);
47 if(!res)
H A DCURLINFO_CONTENT_LENGTH_DOWNLOAD_T.md41 CURLcode res;
45 res = curl_easy_perform(curl);
47 if(!res) {
50 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, &cl);
51 if(!res) {
H A DCURLINFO_NAMELOOKUP_TIME.md44 CURLcode res;
47 res = curl_easy_perform(curl);
48 if(CURLE_OK == res) {
49 res = curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME, &namelookup);
50 if(CURLE_OK == res) {
H A DCURLINFO_CONTENT_LENGTH_UPLOAD.md43 CURLcode res;
47 res = curl_easy_perform(curl);
49 if(!res) {
52 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_UPLOAD, &cl);
53 if(!res) {

Completed in 44 milliseconds

12345678910>>...23