/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | pwd.pl | 0 ;# pwd.pl - keeps track of current working directory in PWD environment var 12 ;# $RCSfile: pwd.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:24:11 $ 14 ;# $Log: pwd.pl,v $ 17 ;# require "pwd.pl"; 22 package pwd; package 29 chop($ENV{'PWD'} = `pwd`); 33 chop($ENV{'PWD'} = `pwd`);
|
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/ |
H A D | ldap_fetch_mkey.c | 64 krb5_ldap_set_mkey(krb5_context context, char *pwd, krb5_keyblock *key) argument
|
H A D | ldap_service_stash.c | 233 dec_password(struct data pwd, struct data *ret) argument 241 if (pwd.len == 0) { 248 if (pwd.len >= strlen("{HEX}") && 249 strncmp((char *)pwd.value, "{HEX}", strlen("{HEX}")) == 0) { 251 if ((pwd.len - strlen("{HEX}")) % 2 != 0) { 257 ret->value = (unsigned char *)malloc((pwd.len - strlen("{HEX}")) / 2 + 1); 263 ret->len = (pwd.len - strlen("{HEX}")) / 2; 265 for (i = strlen("{HEX}"), j = 0; i < pwd.len; i += 2, j++) { 268 if (isxdigit(pwd.value[i]) == 0 || isxdigit(pwd [all...] |
/osnet-11/usr/src/lib/libc/port/stdio/ |
H A D | cuserid.c | 36 #include <pwd.h> 48 struct passwd pwd; local 64 } else if ((pw = getpwuid_r(getuid(), &pwd, buffer, BUFSIZ)) != NULL) {
|
/osnet-11/usr/src/cmd/ldap/ns_ldap/ |
H A D | standalone.c | 117 char *pwd; local 137 if ((pwd = strdup(passwdBuf)) == NULL) { 143 return (pwd);
|
/osnet-11/usr/src/lib/pam_modules/rhosts_auth/ |
H A D | rhosts_auth.c | 32 #include <pwd.h> 55 struct passwd pwd; local 89 if (getpwnam_r(lusername, &pwd, pwd_buffer, sizeof (pwd_buffer)) 93 if (pwd.pw_uid == 0)
|
/osnet-11/usr/src/lib/pam_modules/ldap/ |
H A D | ldap_utils.c | 83 authenticate(ns_cred_t **credpp, char *usrname, char *pwd, argument 101 if ((usrname == NULL) || (pwd == NULL) || (usrname[0] == '\0') || 102 (pwd[0] == '\0')) 110 credp->cred.unix_cred.passwd = strdup(pwd);
|
/osnet-11/usr/src/lib/pam_modules/unix_session/ |
H A D | unix_session.c | 39 #include <pwd.h> 93 struct passwd pwd; local 127 if (getpwnam_r(user, &pwd, buffer, sizeof (buffer)) == NULL) { 136 offset = (offset_t)pwd.pw_uid * 142 "too large", pwd.pw_uid); 183 "lastlog: uid %d: %m", pwd.pw_uid); 186 "lastlog: uid %d: %m", pwd.pw_uid);
|
/osnet-11/usr/src/lib/pyzfs/common/ |
H A D | userspace.py | 29 import pwd namespace 73 (0, 0): ("POSIX User", lambda id: pwd.getpwuid(int(id)).pw_name)
|
H A D | allow.py | 31 import pwd namespace 72 name = pwd.getpwuid(int(ws)).pw_name 176 id = decodeid(w, pwd.getpwnam, 188 id = pwd.getpwnam(w)[2]
|
/osnet-11/usr/src/lib/libbsm/common/ |
H A D | audit_rexecd.c | 37 #include <pwd.h> 142 struct passwd *pwd; local 166 pwd = getpwnam(user); 167 if (pwd == NULL) { 171 uid = pwd->pw_uid; 172 gid = pwd->pw_gid; 253 struct passwd *pwd; local 277 pwd = getpwnam(user); 278 if (pwd == NULL) { 282 uid = pwd [all...] |
H A D | audit_rshd.c | 90 #include <pwd.h> 107 struct passwd *pwd; local 114 pwd = getpwnam(locuser); 115 if (pwd == NULL) { 119 uid = pwd->pw_uid; 120 gid = pwd->pw_gid; 206 struct passwd *pwd; local 208 pwd = getpwnam(locuser); 209 if (pwd == NULL) 212 uid = pwd [all...] |
H A D | audit_crontab.c | 38 #include <pwd.h> 264 struct passwd pwd; local 269 if (getpwnam_r(user, &pwd, buffer, PWD_BUFFER_SIZE) == NULL) { 271 } else if (ruid == pwd.pw_uid)
|
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | getuserattrnam.c | 31 #include <pwd.h> 146 struct passwd pwd; local 149 if (getpwuid_r(u, &pwd, buf, NSS_BUFLEN_PASSWD) == NULL) { 153 return (getuserattrnam(pwd.pw_name, key, where, deflt));
|
H A D | getpwnam_r.c | 29 #include <pwd.h> 118 __posix_getpwuid_r(uid_t uid, struct passwd *pwd, char *buffer, argument 125 if ((*result = getpwuid_r(uid, pwd, buffer, (uintptr_t)bufsize)) 151 __posix_getpwnam_r(const char *name, struct passwd *pwd, char *buffer, argument 158 if ((*result = getpwnam_r(name, pwd, buffer, (uintptr_t)bufsize))
|
H A D | getuserattr.c | 35 #include <pwd.h> 205 struct passwd pwd; local 208 if (getpwuid_r(u, &pwd, buf, NSS_BUFLEN_PASSWD) == NULL) 210 return (getusernam(pwd.pw_name));
|
/osnet-11/usr/src/lib/pam_modules/authtok_get/ |
H A D | authtok_get.c | 58 char *pwd; local 97 res = pam_get_item(pamh, PAM_AUTHTOK, (void **)&pwd); 100 if (pwd != NULL) { 112 dgettext(TEXT_DOMAIN, "New Password: "), &pwd); 117 if (pwd == NULL) { 126 (void) memset(pwd, 0, strlen(pwd)); 127 free(pwd); 150 char *pwd; local 166 "Re-enter new Password: "), &pwd); [all...] |
/osnet-11/usr/src/lib/pam_modules/dial_auth/ |
H A D | dial_auth.c | 29 #include <pwd.h> 62 struct passwd pwd; local 98 if (getpwnam_r(user, &pwd, pwd_buffer, sizeof (pwd_buffer)) == NULL) 138 if (pwd.pw_shell != NULL && strcmp(pwd.pw_shell, line) == 0)
|
/osnet-11/usr/src/lib/pam_modules/roles/ |
H A D | roles.c | 26 #include <pwd.h> 32 #include <pwd.h> 58 struct passwd *pw_entry, pwd; local 100 if ((pw_entry = getpwnam_r(username, &pwd, buf, sizeof (buf))) == NULL) 102 if ((pw_entry = getpwuid_r(pw_entry->pw_uid, &pwd, buf, 146 if ((pw_entry = getpwuid_r(uid, &pwd, buf,
|
/osnet-11/usr/src/lib/pam_modules/user_policy/ |
H A D | user_policy.c | 31 #include <pwd.h> 110 struct passwd pwd; local 151 if (getpwnam_r(user, &pwd, pwd_buf, sizeof (pwd_buf)) == NULL) {
|
/osnet-11/usr/src/lib/passwdutil/ |
H A D | nss_attr.c | 28 #include <pwd.h> 65 struct passwd *pwd; member in struct:pwbuf 112 if (pwbuf->pwd == NULL) 113 pwbuf->pwd = (struct passwd *) 115 if (pwbuf->pwd == NULL) { 140 if (pwbuf->pwd) 141 free(pwbuf->pwd); 158 if (pwbuf->pwd) { 163 if (getpwnam_r(name, pwbuf->pwd, pwbuf->pwd_scratch, 184 struct passwd pwd; local [all...] |
/osnet-11/usr/src/lib/krb5/kdb/ |
H A D | kdb_cpw.c | 372 krb5_data pwd; local 450 pwd.data = passwd; 451 pwd.length = strlen(passwd); 455 &pwd, &key_salt.data, &key))) {
|
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/backend/loader/ |
H A D | menulst.py | 32 import pwd namespace 419 os.chown(realmenu, pwd.getpwnam('root').pw_uid,
|
/osnet-11/usr/src/tools/onbld/Scm/ |
H A D | Backup.py | 60 import os, pwd, shutil, tarfile, time, traceback namespace 637 home = os.getenv('HOME') or pwd.getpwuid(os.getuid()).pw_dir
|
/osnet-11/usr/src/lib/libproject/common/ |
H A D | getprojent.c | 28 #include <pwd.h> 263 struct passwd pwd; local 274 if (getpwnam_r(user, &pwd, buffer, buflen) == NULL) 276 gid = pwd.pw_gid;
|