HomeSort by relevance Sort by last modified time
    Searched defs:res (Results 76 - 100 of 4293) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/curl/docs/examples/
pop3-ssl.c 35 CURLcode res = CURLE_OK; local
73 res = curl_easy_perform(curl);
76 if(res != CURLE_OK)
78 curl_easy_strerror(res));
84 return (int)res;
pop3-stat.c 34 CURLcode res = CURLE_OK; local
52 res = curl_easy_perform(curl);
55 if(res != CURLE_OK)
57 curl_easy_strerror(res));
63 return (int)res;
pop3-tls.c 35 CURLcode res = CURLE_OK; local
72 res = curl_easy_perform(curl);
75 if(res != CURLE_OK)
77 curl_easy_strerror(res));
83 return (int)res;
pop3-top.c 34 CURLcode res = CURLE_OK; local
49 res = curl_easy_perform(curl);
52 if(res != CURLE_OK)
54 curl_easy_strerror(res));
60 return (int)res;
pop3-uidl.c 34 CURLcode res = CURLE_OK; local
49 res = curl_easy_perform(curl);
52 if(res != CURLE_OK)
54 curl_easy_strerror(res));
60 return (int)res;
resolve.c 28 CURLcode res = CURLE_OK; local
42 res = curl_easy_perform(curl);
50 return (int)res;
simple.c 28 CURLcode res; local
36 /* Perform the request, res will get the return code */
37 res = curl_easy_perform(curl);
39 if(res != CURLE_OK)
41 curl_easy_strerror(res));
simplepost.c 29 CURLcode res; local
42 /* Perform the request, res will get the return code */
43 res = curl_easy_perform(curl);
45 if(res != CURLE_OK)
47 curl_easy_strerror(res));
smtp-expn.c 37 CURLcode res; local
53 res = curl_easy_perform(curl);
56 if(res != CURLE_OK)
58 curl_easy_strerror(res));
smtp-vrfy.c 40 CURLcode res; local
53 res = curl_easy_perform(curl);
56 if(res != CURLE_OK)
58 curl_easy_strerror(res));
  /external/curl/tests/libtest/
lib1508.c 30 int res = 0; local
48 return res;
lib1511.c 30 int res = 0; local
43 res = curl_easy_perform(curl);
44 if(res)
49 res = TEST_ERR_FAILURE; /* not correct */
56 res = curl_easy_perform(curl);
57 if(res)
62 res = TEST_ERR_FAILURE; /* not correct */
66 res = TEST_ERR_SUCCESS; /* this is where we should be */
74 return res;
lib1513.c 50 int res=0; local
63 res = curl_easy_perform(curl);
72 return res;
lib1529.c 30 CURLcode res = CURLE_FAILED_INIT; local
51 res = curl_easy_perform(curl);
58 return (int)res;
lib1530.c 41 CURLcode res = CURLE_FAILED_INIT; local
59 res = curl_easy_perform(curl);
66 return (int)res;
lib501.c 28 CURLcode res; local
46 res = curl_easy_perform(curl);
53 return (int)res;
lib511.c 28 CURLcode res; local
47 res = curl_easy_perform(curl);
54 return (int)res;
lib513.c 38 CURLcode res=CURLE_OK; local
72 /* Perform the request, res will get the return code */
73 res = curl_easy_perform(curl);
81 return (int)res;
lib514.c 29 CURLcode res=CURLE_OK; local
68 /* Perform the request 2, res will get the return code */
69 res = curl_easy_perform(curl);
77 return (int)res;
lib515.c 29 CURLcode res=CURLE_OK; local
50 res = curl_easy_perform(curl);
58 return (int)res;
lib516.c 29 CURLcode res=CURLE_OK; local
49 res = curl_easy_perform(curl);
57 return (int)res;
lib519.c 28 CURLcode res; local
48 res = curl_easy_perform(curl);
53 res = curl_easy_perform(curl);
60 return (int)res;
lib520.c 28 CURLcode res; local
46 res = curl_easy_perform(curl);
53 return (int)res;
lib521.c 28 CURLcode res; local
47 res = curl_easy_perform(curl);
54 return (int)res;
lib523.c 28 CURLcode res; local
48 res = curl_easy_perform(curl);
55 return (int)res;

Completed in 167 milliseconds

1 2 34 5 6 7 8 91011>>