Home | History | Annotate | Download | only in extensions

Lines Matching refs:pwd

8 #include <pwd.h>
139 struct passwd *pwd;
146 if ((pwd = getpwnam(cb->arg)) != NULL)
147 id = pwd->pw_uid;
186 struct passwd *pwd;
193 if ((pwd = getpwnam(cb->arg)) != NULL)
194 id = pwd->pw_uid;
244 struct passwd *pwd;
251 if ((pwd = getpwnam(cb->arg)) != NULL)
252 from = to = pwd->pw_uid;
301 struct passwd *pwd = getpwuid(info->uid);
303 if (pwd != NULL && pwd->pw_name != NULL) {
304 printf(" %s", pwd->pw_name);
350 struct passwd *pwd = getpwuid(info->uid);
352 if (pwd != NULL && pwd->pw_name != NULL) {
353 printf(" %s", pwd->pw_name);
399 const struct passwd *pwd = getpwuid(info->uid_min);
401 if (pwd != NULL && pwd->pw_name != NULL) {
402 printf(" %s", pwd->pw_name);