Home
last modified time | relevance | path

Searched refs:allocuserpwd (Results 1 – 3 of 3) sorted by relevance

/external/curl/lib/
Dhttp_ntlm.c122 char **allocuserpwd; in Curl_output_ntlm() local
142 allocuserpwd = &data->state.aptr.proxyuserpwd; in Curl_output_ntlm()
156 allocuserpwd = &data->state.aptr.userpwd; in Curl_output_ntlm()
199 free(*allocuserpwd); in Curl_output_ntlm()
200 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
204 if(!*allocuserpwd) in Curl_output_ntlm()
207 DEBUG_OUT(fprintf(stderr, "**** Header %s\n ", *allocuserpwd)); in Curl_output_ntlm()
219 free(*allocuserpwd); in Curl_output_ntlm()
220 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm()
224 if(!*allocuserpwd) in Curl_output_ntlm()
[all …]
Dhttp_digest.c86 char **allocuserpwd; in Curl_output_digest() local
101 allocuserpwd = &data->state.aptr.proxyuserpwd; in Curl_output_digest()
109 allocuserpwd = &data->state.aptr.userpwd; in Curl_output_digest()
115 Curl_safefree(*allocuserpwd); in Curl_output_digest()
167 *allocuserpwd = aprintf("%sAuthorization: Digest %s\r\n", in Curl_output_digest()
171 if(!*allocuserpwd) in Curl_output_digest()
Dcurl_ntlm_wb.c383 char **allocuserpwd; in Curl_output_ntlm_wb() local
398 allocuserpwd = &data->state.aptr.proxyuserpwd; in Curl_output_ntlm_wb()
408 allocuserpwd = &data->state.aptr.userpwd; in Curl_output_ntlm_wb()
443 free(*allocuserpwd); in Curl_output_ntlm_wb()
444 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm_wb()
447 DEBUG_OUT(fprintf(stderr, "**** Header %s\n ", *allocuserpwd)); in Curl_output_ntlm_wb()
449 if(!*allocuserpwd) in Curl_output_ntlm_wb()
462 free(*allocuserpwd); in Curl_output_ntlm_wb()
463 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm_wb()
466 DEBUG_OUT(fprintf(stderr, "**** %s\n ", *allocuserpwd)); in Curl_output_ntlm_wb()
[all …]