Home | History | Annotate | Download | only in extensions

Lines Matching refs:pwd

8 #include <pwd.h>
140 struct passwd *pwd;
147 if ((pwd = getpwnam(cb->arg)) != NULL)
148 id = pwd->pw_uid;
187 struct passwd *pwd;
194 if ((pwd = getpwnam(cb->arg)) != NULL)
195 id = pwd->pw_uid;
245 struct passwd *pwd;
252 if ((pwd = getpwnam(cb->arg)) != NULL)
253 from = to = pwd->pw_uid;
302 struct passwd *pwd = getpwuid(info->uid);
304 if (pwd != NULL && pwd->pw_name != NULL) {
305 printf(" %s", pwd->pw_name);
351 struct passwd *pwd = getpwuid(info->uid);
353 if (pwd != NULL && pwd->pw_name != NULL) {
354 printf(" %s", pwd->pw_name);
400 const struct passwd *pwd = getpwuid(info->uid_min);
402 if (pwd != NULL && pwd->pw_name != NULL) {
403 printf(" %s", pwd->pw_name);