Lines Matching refs:result
153 CURLcode result;
164 result = Curl_urldecode(data->state.up.path, 0, &real_path,
166 if(result)
167 return result;
292 CURLcode result = CURLE_OK;
343 while(!result) {
348 result = Curl_fillreadbuffer(data, sizeof(buffer), &readcount);
349 if(result)
376 result = CURLE_SEND_ERROR;
385 result = CURLE_ABORTED_BY_CALLBACK;
387 result = Curl_speedcheck(data, Curl_now());
389 if(!result && Curl_pgrsUpdate(data))
390 result = CURLE_ABORTED_BY_CALLBACK;
395 return result;
413 CURLcode result = CURLE_OK;
460 result = Curl_client_write(data, CLIENTWRITE_HEADER, header, headerlen);
461 if(result)
462 return result;
464 result = Curl_client_write(data, CLIENTWRITE_HEADER,
466 if(result != CURLE_OK)
467 return result;
471 result = Curl_gmtime(filetime, &buffer);
472 if(result)
473 return result;
486 result = Curl_client_write(data, CLIENTWRITE_HEADER, header, headerlen);
487 if(result)
488 return result;
492 return result;
496 result = Curl_range(data);
497 if(result)
498 return result;
546 while(!result) {
570 result = Curl_client_write(data, CLIENTWRITE_BODY, tmpbuf, nread);
571 if(result)
572 return result;
575 result = CURLE_ABORTED_BY_CALLBACK;
577 result = Curl_speedcheck(data, Curl_now());
580 result = CURLE_ABORTED_BY_CALLBACK;
582 return result;