Searched refs:getpwnam (Results 1 - 25 of 153) sorted by relevance

1234567

/illumos-gate/usr/src/lib/libast/common/string/
H A Dstruid.c31 __STDPP__directive pragma pp:hide getpwnam getpwuid
33 #define getpwnam ______getpwnam
42 __STDPP__directive pragma pp:nohide getpwnam getpwuid
44 #undef getpwnam
48 extern struct passwd* getpwnam(const char*);
82 if (pw = getpwnam(name))
93 else if (streq(name, "root") && (pw = getpwnam("Administrator")))
H A Dstrgid.c31 __STDPP__directive pragma pp:hide getgrgid getgrnam getpwnam
35 #define getpwnam ______getpwnam
44 __STDPP__directive pragma pp:nohide getgrgid getgrnam getpwnam
48 #undef getpwnam
53 extern struct passwd* getpwnam(const char*);
90 else if (pw = getpwnam(name))
105 else if (pw = getpwnam("Administrator"))
/illumos-gate/usr/src/cmd/mailx/
H A Dgetname.c46 extern struct passwd *getpwnam();
89 pw = getpwnam(name);
H A Dtemp.c48 extern struct passwd *getpwnam();
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dsun_solaris_cr_6807179_shellpattern_uses_getpwnam.sh27 # This test checks whether ksh93 does unneccesaty |libc::getpwnam()|
30 # This was reported as CR #6807179 ("ksh93 does unneccesary |libc::getpwnam()| lookups for ~(modifier) pattern patterns"):
32 # ksh93 does unneccesary |libc::getpwnam()| lookups for
39 # and this code calls |libc::getpwnam()|) which shouldn't be
67 # test 1: Check if the shell uses |libc::getpwnam()| for pattern "~(Elr)wo.*ld"
69 [[ "$( < "${tmpfile}")" != *getpwnam* ]] || err_exit "truss log reports the use of getpwnam() for pattern ~(Elr)wo.*ld"
73 # test 2: Check if the shell uses |libc::getpwnam()| for pattern "~(Si)wo*ld"
75 [[ "$( < "${tmpfile}")" != *getpwnam* ]] || err_exit "truss log reports the use of getpwnam() fo
[all...]
/illumos-gate/usr/src/cmd/bnu/
H A Dgetpwinfo.c31 extern struct passwd *getpwuid(), *getpwnam();
55 pwd = getpwnam(login_name);
88 if ((pwd = getpwnam(name)) == NULL) {
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dpwd.h63 struct passwd *getpwnam(/* char *name */);
/illumos-gate/usr/src/lib/nsswitch/ad/
H A DMakefile.com30 OBJECTS = getpwnam.o getspent.o getgrent.o ad_common.o
/illumos-gate/usr/src/cmd/acct/lib/
H A Dnamtouid.c53 struct passwd *getpwnam(), *pp;
60 if ((pp = getpwnam(ntmp)) == NULL)
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dpwdauth.c50 * getpwnam(3C) routine that uses /etc/nsswitch.conf(4).
59 else if (pwp = getpwnam(name))
/illumos-gate/usr/src/cmd/mail/
H A Dislocal.c54 if ((pwd_ptr = getpwnam(user)) == NULL) {
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dpwd.h84 struct passwd *getpwnam(/* char *name */);
/illumos-gate/usr/src/cmd/getent/
H A Ddogetpw.c34 * getpwnam - get entries from password database
64 pwp = getpwnam(*list);
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dgetname.c77 || !(p = getpwnam(l))
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetpwnam.c32 #pragma weak _getpwnam = getpwnam
79 getpwnam(const char *nam) function
/illumos-gate/usr/src/cmd/groups/
H A Dgroups.c54 extern struct passwd *getpwnam();
88 if ((pw = getpwnam(*argv)) == NULL) {
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dpname_to_uid.c86 if (pw = getpwnam(lname))
/illumos-gate/usr/src/test/zfs-tests/cmd/chg_usr_exec/
H A Dchg_usr_exec.c58 if ((ppw = getpwnam(plogin)) == NULL) {
59 perror("getpwnam");
/illumos-gate/usr/src/lib/nsswitch/files/
H A DMakefile.com40 getpwnam.o \
/illumos-gate/usr/src/lib/nsswitch/ldap/
H A DMakefile.com49 getpwnam.o \
/illumos-gate/usr/src/lib/nsswitch/nis/
H A DMakefile.com46 getpwnam.o \
/illumos-gate/usr/src/lib/passwdutil/
H A D__failed_count.c53 if ((ret = ops->getpwnam(username, items, NULL, &buf)) != PWU_SUCCESS) {
112 if ((ret = ops->getpwnam(username, items, NULL, &buf)) != PWU_SUCCESS)
H A D__set_authtoken_attr.c85 if (rops[i]->getpwnam) {
86 err = rops[i]->getpwnam(name, items, rep, &buf);
/illumos-gate/usr/src/cmd/userattr/
H A Duserattr.c110 if ((pwd = getpwnam(user)) == NULL) {
/illumos-gate/usr/src/cmd/oamuser/lib/
H A Dvlogin.c110 if ((t_pptr = getpwnam(login)) != NULL) {

Completed in 237 milliseconds

1234567