Searched refs:CURLM_OK (Results 1 – 25 of 46) sorted by relevance
12
/third_party/curl/tests/libtest/ |
D | test.h | 201 if((ec = curl_multi_setopt((A), (B), (C))) != CURLM_OK) { \ 225 if((ec = curl_multi_add_handle((A), (B))) != CURLM_OK) { \ 249 if((ec = curl_multi_remove_handle((A), (B))) != CURLM_OK) { \ 274 if((ec = curl_multi_perform((A), (B))) != CURLM_OK) { \ 304 if((ec = curl_multi_fdset((A), (B), (C), (D), (E))) != CURLM_OK) { \ 334 if((ec = curl_multi_timeout((A), (B))) != CURLM_OK) { \ 364 if((ec = curl_multi_poll((A), (B), (C), (D), (E))) != CURLM_OK) { \ 394 if((ec = curl_multi_wakeup((A))) != CURLM_OK) { \
|
D | lib670.c | 189 if(!still_running || mres != CURLM_OK) in test() 225 if(mres != CURLM_OK) in test()
|
D | lib1500.c | 59 if(res != CURLM_OK) { in test()
|
D | lib1552.c | 62 if(res != CURLM_OK) { in test()
|
D | lib1553.c | 84 if(res != CURLM_OK) { in test()
|
D | lib1531.c | 98 if(mc != CURLM_OK) { in test()
|
/third_party/curl/lib/ |
D | multi.c | 352 return CURLM_OK; in multi_addmsg() 537 return CURLM_OK; in curl_multi_add_handle() 733 return CURLM_OK; /* it is already removed so let's say it is fine! */ in curl_multi_remove_handle() 862 return CURLM_OK; in curl_multi_remove_handle() 1075 return CURLM_OK; in curl_multi_fdset() 1393 return CURLM_OK; 1429 return CURLM_OK; 1460 return CURLM_OK; 1740 rc = CURLM_OK; 2056 rc = CURLM_OK; [all …]
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
D | test_callback.c | 123 if (mret != CURLM_OK) in main() 141 if (mret != CURLM_OK) in main()
|
D | test_process_arguments.c | 163 if (mret != CURLM_OK) in testExternalGet() 179 if (mret != CURLM_OK) in testExternalGet()
|
D | test_parse_cookies.c | 164 if (mret != CURLM_OK) in testExternalGet() 180 if (mret != CURLM_OK) in testExternalGet()
|
D | test_post_loop.c | 364 if (mret != CURLM_OK) in testExternalPost() 381 if (mret != CURLM_OK) in testExternalPost() 399 if ((CURLM_OK == curl_multi_timeout (multi, &ctimeout)) && in testExternalPost()
|
D | test_get_chunked.c | 330 if (mret != CURLM_OK) in testExternalGet() 346 if (mret != CURLM_OK) in testExternalGet()
|
D | test_quiesce.c | 340 if (mret != CURLM_OK) in testExternalGet() 358 if (mret != CURLM_OK) in testExternalGet()
|
D | test_put_chunked.c | 360 if (mret != CURLM_OK) in testExternalPut() 376 if (mret != CURLM_OK) in testExternalPut()
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
D | test_empty_response.c | 127 if (mret != CURLM_OK) in testInternalSelectGet() 142 if (mret != CURLM_OK) in testInternalSelectGet()
|
D | test_https_get_select.c | 139 if (mret != CURLM_OK) in testExternalGet() 154 if (mret != CURLM_OK) in testExternalGet()
|
/third_party/skia/third_party/externals/microhttpd/src/spdy2http/ |
D | proxy.c | 489 if(CURLM_OK != (ret = curl_multi_remove_handle(multi_handle, proxy->curl_handle))) in cleanup() 952 if(CURLM_OK != (ret = curl_multi_add_handle(multi_handle, proxy->curl_handle))) in standard_request_handler() 960 if(CURLM_OK != (ret = curl_multi_perform(multi_handle, &still_running)) in standard_request_handler() 1091 if(CURLM_OK != (ret_curl = curl_multi_timeout(multi_handle, &timeout_curl))) in run() 1110 if(CURLM_OK != (ret = curl_multi_fdset(multi_handle, &rs, in run() 1144 if(CURLM_OK != (ret = curl_multi_perform(multi_handle, &still_running)) in run()
|
/third_party/skia/third_party/externals/microhttpd/src/testzzuf/ |
D | test_get_chunked.c | 253 if (mret != CURLM_OK) in testExternalGet() 270 if (mret != CURLM_OK) in testExternalGet()
|
D | test_get.c | 236 if (mret != CURLM_OK) in testExternalGet() 253 if (mret != CURLM_OK) in testExternalGet()
|
D | test_put_chunked.c | 294 if (mret != CURLM_OK) in testExternalPut() 311 if (mret != CURLM_OK) in testExternalPut()
|
D | test_put.c | 283 if (mret != CURLM_OK) in testExternalPut() 300 if (mret != CURLM_OK) in testExternalPut()
|
D | test_put_large.c | 301 if (mret != CURLM_OK) in testExternalPut() 318 if (mret != CURLM_OK) in testExternalPut()
|
D | test_post.c | 314 if (mret != CURLM_OK) in testExternalPost() 331 if (mret != CURLM_OK) in testExternalPost()
|
D | test_post_form.c | 328 if (mret != CURLM_OK) in testExternalPost() 346 if (mret != CURLM_OK) in testExternalPost()
|
/third_party/curl/docs/examples/ |
D | multi-legacy.c | 109 if(mc != CURLM_OK) { in main()
|
12