Lines Matching defs:result
267 CURLcode result = CURLE_OK;
289 result = ntlm_decode_type2_target(data, type2ref, ntlm);
290 if(result) {
292 return result;
305 return result;
333 * out [out] - The result storage.
454 * out [out] - The result storage.
482 CURLcode result = CURLE_OK;
543 result = Curl_rand(data, entropy, 8);
544 if(result)
545 return result;
547 result = Curl_ntlm_core_mk_nt_hash(passwdp, ntbuffer);
548 if(result)
549 return result;
551 result = Curl_ntlm_core_mk_ntlmv2_hash(user, userlen, domain, domlen,
553 if(result)
554 return result;
557 result = Curl_ntlm_core_mk_lmv2_resp(ntlmv2hash, entropy,
559 if(result)
560 return result;
563 result = Curl_ntlm_core_mk_ntlmv2_resp(ntlmv2hash, entropy,
565 if(result)
566 return result;
577 result = Curl_ntlm_core_mk_nt_hash(passwdp, ntbuffer);
578 if(result)
579 return result;
583 result = Curl_ntlm_core_mk_lm_hash(passwdp, lmbuffer);
584 if(result)
585 return result;
754 result = Curl_bufref_memdup(out, ntlmbuf, size);
758 return result;