Lines Matching refs:user
84 * userp [in] - The user name in the format User or Domain\User.
85 * passwdp [in] - The user's password.
159 /* Use the current Windows user */
382 * userp [in] - The user name in the format User or Domain\User.
383 * passwdp [in] - The user's password.
432 /* If the user/passwd that was used to make the identity for http_context
434 if((userp && !digest->user) || (!userp && digest->user) ||
436 (userp && digest->user && Curl_timestrcmp(userp, digest->user)) ||
442 Curl_safefree(digest->user);
487 /* free the copy of user/passwd used to make the previous identity */
488 Curl_safefree(digest->user);
509 /* Use the current Windows user */
513 digest->user = strdup(userp);
515 if(!digest->user) {
526 Curl_safefree(digest->user);
667 /* Free the copy of user/passwd used to make the identity for http_context */
668 Curl_safefree(digest->user);