Lines Matching refs:result
118 CURLcode result = CURLE_OK;
132 result = Curl_cwriter_write(data, cw_next, CLIENTWRITE_BODY, buf, blen);
134 result = Curl_client_write(data, CLIENTWRITE_BODY, (char *)buf, blen);
135 if(result) {
138 return result;
205 result = Curl_cwriter_write(data, cw_next, CLIENTWRITE_BODY,
208 result = Curl_client_write(data, CLIENTWRITE_BODY,
210 if(result) {
213 return result;
249 result = Curl_dyn_addn(&ch->trailer, (char *)STRCONST("\x0d\x0a"));
250 if(result) {
253 return result;
259 result = Curl_cwriter_write(data, cw_next,
264 result = Curl_client_write(data,
268 if(result) {
271 return result;
287 result = Curl_dyn_addn(&ch->trailer, buf, 1);
288 if(result) {
291 return result;
408 CURLcode result;
415 result = httpchunk_readwrite(data, &ctx->ch, writer->next, buf, blen,
418 if(result) {
426 return result;