Lines Matching refs:user
328 * userp [in] - The user name in the format User or Domain\User.
329 * passwdp [in] - The user's password.
451 * userp [in] - The user name in the format User or Domain\User.
452 * passwdp [in] - The user's password.
494 const char *user;
505 user = strchr(userp, '\\');
506 if(!user)
507 user = strchr(userp, '/');
509 if(user) {
511 domlen = (user - domain);
512 user++;
515 user = userp;
517 userlen = strlen(user);
551 result = Curl_ntlm_core_mk_ntlmv2_hash(user, userlen, domain, domlen,
627 "%c%c" /* user length */
628 "%c%c" /* user allocated space */
629 "%c%c" /* user offset */
645 /* user string */
722 /* Make sure that the domain, user and host strings fit in the
725 failf(data, "user + domain + host name too big");
739 unicodecpy(&ntlmbuf[size], user, userlen / 2);
741 memcpy(&ntlmbuf[size], user, userlen);