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

/freebsd-10.1-release/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-10.1-release/contrib/libarchive/cpio/
H A Dcmdline.c335 struct passwd *pwent; local
342 if ((pwent = getpwnam(user)) != NULL) {
343 *uid = pwent->pw_uid;
345 *gid = pwent->pw_gid;
H A Dcpio.c1352 struct passwd *pwent; local
1357 pwent = getpwuid((uid_t)id);
1358 if (pwent == NULL) {
1366 *name = pwent->pw_name;
/freebsd-10.1-release/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.c196 struct passwd pwent, *result; local
200 result = &pwent; /* Old getpwnam_r ignores last arg. */
201 r = getpwnam_r(uname, &pwent, buffer, bufsize, &result);
/freebsd-10.1-release/crypto/openssh/
H A Dmonitor.c731 struct passwd *pwent; local
742 pwent = getpwnamallow(username);
745 setproctitle("%s [priv]", pwent ? username : "unknown");
750 if (pwent == NULL) {
757 authctxt->pw = pwent;
761 buffer_put_string(m, pwent, sizeof(struct passwd));
762 buffer_put_cstring(m, pwent->pw_name);
765 buffer_put_cstring(m, pwent->pw_gecos);
768 buffer_put_cstring(m, pwent->pw_class);
770 buffer_put_cstring(m, pwent
[all...]
/freebsd-10.1-release/contrib/sqlite3/
H A Dshell.c2799 struct passwd *pwent; local
2801 if( (pwent=getpwuid(uid)) != NULL) {
2802 home_dir = pwent->pw_dir;

Completed in 139 milliseconds