Searched refs:allocuserpwd (Results 1 – 3 of 3) sorted by relevance
/external/curl/lib/ |
D | http_ntlm.c | 122 char **allocuserpwd; in Curl_output_ntlm() local 143 allocuserpwd = &conn->allocptr.proxyuserpwd; in Curl_output_ntlm() 153 allocuserpwd = &conn->allocptr.userpwd; in Curl_output_ntlm() 195 free(*allocuserpwd); in Curl_output_ntlm() 196 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm() 200 if(!*allocuserpwd) in Curl_output_ntlm() 203 DEBUG_OUT(fprintf(stderr, "**** Header %s\n ", *allocuserpwd)); in Curl_output_ntlm() 215 free(*allocuserpwd); in Curl_output_ntlm() 216 *allocuserpwd = aprintf("%sAuthorization: NTLM %s\r\n", in Curl_output_ntlm() 220 if(!*allocuserpwd) in Curl_output_ntlm() [all …]
|
D | curl_ntlm_wb.c | 345 char **allocuserpwd; in Curl_output_ntlm_wb() local 359 allocuserpwd = &conn->allocptr.proxyuserpwd; in Curl_output_ntlm_wb() 365 allocuserpwd = &conn->allocptr.userpwd; in Curl_output_ntlm_wb() 399 free(*allocuserpwd); in Curl_output_ntlm_wb() 400 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb() 403 DEBUG_OUT(fprintf(stderr, "**** Header %s\n ", *allocuserpwd)); in Curl_output_ntlm_wb() 405 if(!*allocuserpwd) in Curl_output_ntlm_wb() 419 free(*allocuserpwd); in Curl_output_ntlm_wb() 420 *allocuserpwd = aprintf("%sAuthorization: %s\r\n", in Curl_output_ntlm_wb() 423 DEBUG_OUT(fprintf(stderr, "**** %s\n ", *allocuserpwd)); in Curl_output_ntlm_wb() [all …]
|
D | http_digest.c | 85 char **allocuserpwd; in Curl_output_digest() local 97 allocuserpwd = &conn->allocptr.proxyuserpwd; in Curl_output_digest() 104 allocuserpwd = &conn->allocptr.userpwd; in Curl_output_digest() 110 Curl_safefree(*allocuserpwd); in Curl_output_digest() 162 *allocuserpwd = aprintf("%sAuthorization: Digest %s\r\n", in Curl_output_digest() 166 if(!*allocuserpwd) in Curl_output_digest()
|