Lines Matching refs:result

224   CURLcode result = CURLE_OK;
315 return result;
390 result = Curl_http_output_auth(data, conn, p_request, HTTPREQ_GET,
392 if(result)
393 return result;
437 result =
442 if(result)
443 return result;
450 result = Curl_dyn_addf(&req_buffer, "Session: %s\r\n", p_session_id);
451 if(result)
452 return result;
458 result = Curl_dyn_addf(&req_buffer,
483 if(result)
484 return result;
487 result = Curl_add_timecondition(data, &req_buffer);
488 if(result)
489 return result;
492 result = Curl_add_custom_headers(data, FALSE, &req_buffer);
493 if(result)
494 return result;
516 result =
520 if(result)
521 return result;
527 result = Curl_dyn_addn(&req_buffer,
530 if(result)
531 return result;
537 result = Curl_dyn_addn(&req_buffer,
540 if(result)
541 return result;
557 result = Curl_dyn_addn(&req_buffer, STRCONST("\r\n"));
558 if(result)
559 return result;
562 result = Curl_dyn_addn(&req_buffer, data->set.postfields,
564 if(result)
565 return result;
569 result = Curl_buffer_send(&req_buffer, data, data->req.p.http,
571 if(result) {
573 return result;
586 result = CURLE_ABORTED_BY_CALLBACK;
589 return result;
622 CURLcode result = CURLE_OK;
658 result = rtp_write_body_junk(data,
661 if(result)
665 result = CURLE_OUT_OF_MEMORY;
690 result = rtp_write_body_junk(data, Curl_dyn_ptr(&rtspc->buf), 1);
691 if(result)
704 result = CURLE_OUT_OF_MEMORY;
719 result = CURLE_OUT_OF_MEMORY;
740 result = CURLE_OUT_OF_MEMORY;
749 result = rtp_client_write(data, Curl_dyn_ptr(&rtspc->buf),
753 if(result)
758 result = CURLE_OUT_OF_MEMORY;
774 if(!result && skip_len)
775 result = rtp_write_body_junk(data, (char *)(buf - skip_len), skip_len);
776 return result;
786 CURLcode result = CURLE_OK;
801 result = rtsp_filter_rtp(data, buf, blen, &consumed);
802 if(result)
815 result = Curl_http_write_resp_hds(data, buf, blen, &consumed, done);
816 if(result)
833 result = rtsp_filter_rtp(data, buf, blen, &consumed);
834 if(result)
848 if(!result && (is_eos || blen)) {
849 result = Curl_client_write(data, CLIENTWRITE_BODY|
862 return result;
974 CURLcode result;
975 result = rtsp_parse_transport(data, header + 10);
976 if(result)
977 return result;