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