Lines Matching refs:mcode
554 CURLMcode mcode = CURLM_OK;
594 mcode = curl_multi_socket_action(multi, CURL_SOCKET_TIMEOUT, 0,
608 mcode = curl_multi_socket_action(multi, fds[i].fd, act,
627 if(mcode)
666 CURLMcode mcode = CURLM_OK;
669 while(!done && !mcode) {
672 mcode = curl_multi_poll(multi, NULL, 0, 1000, NULL);
674 if(!mcode)
675 mcode = curl_multi_perform(multi, &still_running);
678 if(!mcode && !still_running) {
689 if(mcode) {
690 result = (mcode == CURLM_OUT_OF_MEMORY) ? CURLE_OUT_OF_MEMORY :
720 CURLMcode mcode;
753 mcode = curl_multi_add_handle(multi, data);
754 if(mcode) {
757 if(mcode == CURLM_OUT_OF_MEMORY)