Searched refs:pwent (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/lib/libpam/modules/pam_opieaccess/
H A Dpam_opieaccess.c57 struct passwd *pwent; local
67 pwent = getpwnam(luser);
68 if (pwent == NULL || opielookup(&opie, __DECONST(char *, luser)) != 0)
79 opiealways(pwent->pw_dir) != 0)
/freebsd-11-stable/contrib/libarchive/cpio/
H A Dcmdline.c341 struct passwd *pwent; local
348 if ((pwent = getpwnam(user)) != NULL) {
349 *uid = pwent->pw_uid;
351 *gid = pwent->pw_gid;
H A Dcpio.c1425 struct passwd *pwent; local
1430 pwent = getpwuid((uid_t)id);
1431 if (pwent == NULL) {
1438 *name = pwent->pw_name;
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_disk_set_standard_lookup.c189 struct passwd pwent, *result; local
201 result = &pwent; /* Old getpwuid_r ignores last arg. */
202 r = getpwuid_r((uid_t)id, &pwent,
H A Darchive_write_disk_set_standard_lookup.c197 struct passwd pwent, *result; local
201 result = &pwent; /* Old getpwnam_r ignores last arg. */
202 r = getpwnam_r(uname, &pwent, buffer, bufsize, &result);
/freebsd-11-stable/crypto/openssh/
H A Dmonitor.c702 struct passwd *pwent; local
713 pwent = getpwnamallow(username);
716 setproctitle("%s [priv]", pwent ? username : "unknown");
721 if (pwent == NULL) {
728 authctxt->pw = pwent;
732 buffer_put_string(m, pwent, sizeof(struct passwd));
733 buffer_put_cstring(m, pwent->pw_name);
736 buffer_put_cstring(m, pwent->pw_gecos);
739 buffer_put_cstring(m, pwent->pw_class);
741 buffer_put_cstring(m, pwent
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dshell.c20752 struct passwd *pwent; local
20754 if( (pwent=getpwuid(uid)) != NULL) {
20755 home_dir = pwent->pw_dir;

Completed in 141 milliseconds