Lines Matching refs:username
56 * widget to get username/password
408 FailedLogin (struct display *d, const char *username)
411 if (username == NULL)
412 username = "username unavailable";
416 d->name, username);
584 char *username = NULL;
588 (XDM_PAM_QUAL void **) &username));
589 if (username != NULL) {
590 Debug("PAM_USER: %s\n", username);
591 greet->name = username;
607 /* Try to fill in username for failed login error log */
608 XDM_PAM_QUAL char *username = greet->name;
610 if (username == NULL) {
613 (XDM_PAM_QUAL void **) &username));
615 FailedLogin (d, username);
731 XDM_PAM_QUAL char *username;
735 if ((pam_get_item(*pamhp, PAM_USER, (XDM_PAM_QUAL void **) &username)
736 == PAM_SUCCESS) && (username != NULL) && (*username != '\0')) {
739 SetValue(login, LOGIN_PROMPT_USERNAME, username);