Lines Matching refs:result

160   CURLcode result = CURLE_OK;
180 nwritten = conn->send[sockindex](data, sockindex, buf, blen, &result);
181 if(result == CURLE_AGAIN) {
183 result = CURLE_OK;
185 else if(result) {
193 return result;
350 CURLcode result = Curl_headers_push(data, optr, htype);
351 if(result)
352 return result;
387 CURLcode result;
408 result = do_init_stack(data);
409 if(result)
410 return result;
419 CURLcode result = CURLE_OK;
438 if(!result)
439 result = chop_write(data, writebuf[i].type,
446 return result;
550 CURLcode result;
611 result = Curl_cwriter_write(data, writer->next, type, buf, nwrite);
612 if(result)
613 return result;
615 result = Curl_pgrsSetDownloadCounter(data, data->req.bytecount);
616 if(result)
617 return result;
680 CURLcode result = CURLE_OUT_OF_MEMORY;
689 result = cwt->do_init(data, writer);
692 *pwriter = result? NULL : writer;
693 if(result)
695 return result;
722 CURLcode result;
725 result = Curl_cwriter_create(&data->req.writer_stack,
727 if(result)
728 return result;
730 result = Curl_cwriter_create(&writer, data, &cw_download, CURL_CW_PROTOCOL);
731 if(result)
732 return result;
733 result = Curl_cwriter_add(data, writer);
734 if(result) {
738 result = Curl_cwriter_create(&writer, data, &cw_raw, CURL_CW_RAW);
739 if(result)
740 return result;
741 result = Curl_cwriter_add(data, writer);
742 if(result) {
745 return result;
751 CURLcode result;
755 result = do_init_stack(data);
756 if(result)
757 return result;
797 CURLcode result = CURLE_RECV_ERROR;
813 nread = conn->recv[num](data, num, buffertofill, bytesfromsocket, &result);
818 result = CURLE_OK;
820 return result;