Lines Matching defs:pw
398 struct passwd *pw;
411 pw = getpwuid(job->uid);
419 timestr, pw ? pw->pw_name : "???",
435 struct passwd *pw;
466 else if ((pw = getpwnam(argv[i])) != NULL) {
467 if (pw->pw_uid != user_uid && user_uid != 0)
470 uids[uids_len++] = pw->pw_uid;
614 struct passwd *pw;
641 else if ((pw = getpwnam(argv[i])) != NULL) {
642 if (user_uid != pw->pw_uid && user_uid != 0) {
647 uids[uids_len++] = pw->pw_uid;
866 struct passwd *pw;
1015 if ((pw = getpwuid(user_uid)) == NULL)
1017 if (strlcpy(user_name, pw->pw_name, sizeof(user_name)) >= sizeof(user_name))
1023 if (!allowed(pw->pw_name, _PATH_AT_ALLOW, _PATH_AT_DENY)) {
1025 pw->pw_name);