Searched refs:pw (Results 226 - 250 of 393) sorted by relevance

1234567891011>>

/macosx-10.10/cron-39/cron/
H A Ddatabase.c204 struct passwd *pw = NULL; local
208 if (strcmp(fname, "*system*") && !(pw = getpwnam(uname))) {
253 u = load_user(crontab_fd, pw, fname);
/macosx-10.10/file_cmds-242/chown/
H A Dchown.c255 struct passwd *pw; local
259 uid = ((pw = getpwnam(s)) != NULL) ? pw->pw_uid : id(s, "user");
/macosx-10.10/file_cmds-242/mtree/
H A Dspec.c172 struct passwd *pw; local
303 if ((pw = getpwnam(val)) == NULL)
305 ip->st_uid = pw->pw_uid;
/macosx-10.10/system_cmds-643.1.1/reboot.tproj/
H A Dreboot.c86 struct passwd *pw; local
183 user = (pw = getpwuid(getuid())) ?
184 pw->pw_name : "???";
/macosx-10.10/OpenSSH-189/openssh/
H A Dmonitor_wrap.c245 struct passwd *pw; local
260 pw = NULL;
263 pw = buffer_get_string(&m, &len);
266 pw->pw_name = buffer_get_string(&m, NULL);
267 pw->pw_passwd = buffer_get_string(&m, NULL);
268 pw->pw_gecos = buffer_get_string(&m, NULL);
270 pw->pw_class = buffer_get_string(&m, NULL);
272 pw->pw_dir = buffer_get_string(&m, NULL);
273 pw->pw_shell = buffer_get_string(&m, NULL);
299 return (pw);
371 mm_user_key_allowed(struct passwd *pw, Key *key) argument
377 mm_hostbased_key_allowed(struct passwd *pw, char *user, char *host, Key *key) argument
384 mm_auth_rhosts_rsa_key_allowed(struct passwd *pw, char *user, char *host, Key *key) argument
1088 mm_auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) argument
1280 mm_ssh_gssapi_userok(char *user, struct passwd *pw) argument
[all...]
H A Daudit-bsm.c272 uid = the_authctxt->pw->pw_uid;
273 gid = the_authctxt->pw->pw_gid;
319 info.ai_auid = the_authctxt->pw->pw_uid;
H A Dauth2.c239 authctxt->pw = PRIVSEP(getpwnamallow(user));
241 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
246 authctxt->pw = fakepw();
312 if (authenticated && authctxt->pw->pw_uid == 0 &&
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/wsock/config/
H A Didnconf.tcl489 proc execWrap { pw lb dlg prg enc } {
545 proc execUnwrap { pw lb dlg prg } {
620 proc confWrap { pw lb } {
686 -command [list execWrap $pw $lb $top $w_prgname $w_encname]
695 proc confUnwrap { pw lb } {
702 -parent $pw
710 -parent $pw
740 -command [list execUnwrap $pw $lb $top $w_prgname]
751 proc unwrapAll {pw lb} {
753 -parent $pw
[all...]
/macosx-10.10/perl-103/versioner/
H A Dversioner.c277 struct passwd *pw = getpwuid(getuid()); local
280 if (EXPECT_FALSE(pw == NULL)) continue; // rdar://problem/12181006
281 dlen = strlen(pw->pw_dir);
282 if (EXPECT_FALSE(dlen + len - 1 >= sizeof(path))) errx(1, "%s: too long", pw->pw_dir);
284 memcpy(path, pw->pw_dir, dlen);
/macosx-10.10/diskdev_cmds-576/repquota.tproj/
H A Drepquota.c131 register struct passwd *pw; local
206 while ((pw = getpwent()) != 0)
207 (void) addid((u_long)pw->pw_uid, USRQUOTA, pw->pw_name);
265 struct passwd *pw; local
328 if ((pw = getpwuid(id)) != 0)
329 name = pw->pw_name;
/macosx-10.10/ntp-92/ntpd/
H A Dntpd.c187 struct passwd *pw; variable in typeref:struct:passwd
952 if ((pw = getpwuid(sw_uid)) != NULL) {
953 user = strdup(pw->pw_name);
958 sw_gid = pw->pw_gid;
968 if ((pw = getpwnam(user)) != NULL) {
969 sw_uid = pw->pw_uid;
970 sw_gid = pw->pw_gid;
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.file.c357 struct passwd *pw; local
371 pw = xgetpwnam(short2str(person));
373 if (pw == NULL)
375 home = str2short(pw->pw_dir);
480 struct passwd *pw; local
487 if ((pw = getpwent()) == NULL)
489 return (str2short(pw->pw_name));
/macosx-10.10/BerkeleyDB-21/db/libdb_java/
H A Ddb_java.i248 final java.io.PrintWriter pw = new java.io.PrintWriter(stream);
253 pw.print(prefix + ": ");
254 pw.println(buf);
255 pw.flush();
266 final java.io.PrintWriter pw = new java.io.PrintWriter(stream);
270 pw.println(msg);
271 pw.flush();
/macosx-10.10/Libc-1044.1.2/gen/
H A Dutmpx-darwin.c90 _pwnam_r(const char *user, struct passwd *pw) argument
103 getpwnam_r(user, pw, buf, pw_size, &p);
113 _pwuid_r(uid_t uid, struct passwd *pw) argument
126 getpwuid_r(uid, pw, buf, pw_size, &p);
138 struct passwd pw; local
141 if ((buf = _pwuid_r(uid, &pw)) == NULL)
144 l = getlastlogxbyname(pw.pw_name, lx);
523 struct passwd pw; local
525 if ((buf = _pwuid_r(getuid(), &pw)) == NULL)
527 strncpy(temp->ut_user, pw
1107 struct passwd pw; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hdb/
H A Dext.c344 heim_octet_string pw; local
370 &pw);
372 ret = der_copy_octet_string(&ext->data.u.password.password, &pw);
379 str = pw.data;
380 if (str[pw.length - 1] != '\0') {
387 der_free_octet_string(&pw);
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-cray.c765 cray_init_job(struct passwd *pw) argument
770 jid = setjob(pw->pw_uid, WJSIGNAL);
778 if (chown(cray_tmpdir, pw->pw_uid, pw->pw_gid) != 0) {
812 cray_init_job(struct passwd *pw) argument
814 initrm_silent(pw->pw_uid);
H A Dopenbsd-compat.h231 char *shadow_pw(struct passwd *pw);
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Deln.c286 const wchar_t *pw; local
287 ret = el_wget(el, op, &pw);
288 *p = ct_encode_string(pw, &el->el_lgcyconv);
/macosx-10.10/file_cmds-242/pax/
H A Dsel_subs.c113 struct passwd *pw; local
136 if ((pw = getpwnam(str)) == NULL) {
140 uid = (uid_t)pw->pw_uid;
/macosx-10.10/libedit-40/src/
H A Deln.c297 const wchar_t *pw; local
298 ret = el_wget(el, op, &pw);
299 *p = ct_encode_string(pw, &el->el_lgcyconv);
/macosx-10.10/emacs-93/emacs/mac/inc/
H A Dconfig.h951 It can assume that the variable `pw'
958 #define USER_FULL_NAME pw->pw_name
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/bwidget/
H A Dtree.rb15 pw = Tk::BWidget::PanedWindow.new(frame, :side=>:top)
17 pane = pw.add(:weight=>1)
48 pane = pw.add(:weight=>2)
76 pw.pack(:fill=>:both, :expand=>true)
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/apps/comm/
H A Dget-regression.xotcl38 upvar $userVar u $pwVar pw
40 set pw jogl
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dkuserok.c217 struct passwd pw; local
219 if(getpwnam_r(luser, &pw, pwbuf, sizeof(pwbuf), &pwd) != 0)
/macosx-10.10/Heimdal-398.1.2/lib/ntlm/
H A Dtest_scram.c139 const char *pw = "password"; local
158 ret = heim_scram_stored_key(HEIM_SCRAM_DIGEST_SHA1, pw, 1, &saltdata,

Completed in 489 milliseconds

1234567891011>>