Lines Matching refs:result
50 result = Curl_hmacit(Curl_HMAC_SHA256, \
55 if(result) { \
358 CURLcode result;
366 result = Curl_sha256it(sha_hash, (const unsigned char *) post_data,
368 if(!result)
370 return result;
432 CURLcode result = CURLE_OK;
439 return result;
465 for(i = 0; !result && (i < entry); i++, ap++) {
471 for(len = ap->len; len && !result; q++, len--) {
473 result = Curl_dyn_addn(dq, q, 1);
481 result = Curl_dyn_addn(dq, q, 1);
485 result = Curl_dyn_addn(dq, q, 1);
494 result = Curl_dyn_addn(dq, tmp, 3);
500 result = Curl_dyn_addn(dq, "%25", 3);
508 result = Curl_dyn_addn(dq, out, 3);
514 if(!result && !found_equals) {
516 result = Curl_dyn_addn(dq, "=", 1);
518 if(!result && i < entry - 1) {
520 result = Curl_dyn_addn(dq, "&", 1);
523 return result;
529 CURLcode result = CURLE_OUT_OF_MEMORY;
598 result = CURLE_BAD_FUNCTION_ARGUMENT;
608 result = CURLE_URL_MALFORMAT;
614 result = CURLE_URL_MALFORMAT;
627 result = CURLE_URL_MALFORMAT;
633 result = CURLE_URL_MALFORMAT;
653 result = calc_s3_payload_hash(data, httpreq, provider1, sha_hash,
656 result = calc_payload_hash(data, sha_hash, sha_hex);
657 if(result)
676 result = Curl_gmtime(clock, &tm);
677 if(result) {
681 result = CURLE_OUT_OF_MEMORY;
685 result = make_headers(data, hostname, timestamp, provider1,
688 if(result)
701 result = canon_query(data, data->state.up.query, &canonical_query);
702 if(result)
704 result = CURLE_OUT_OF_MEMORY;
802 result = CURLE_OK;
814 return result;