Searched refs:pw (Results 1 - 25 of 404) sorted by relevance

1234567891011>>

/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dport-uw.h28 char * get_iaf_password(struct passwd *pw);
H A Dport-irix.h35 void irix_setusercontext(struct passwd *pw);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/TableModel/
H A DTableModelAppDelegate.py7 for pw in pwd.getpwall():
9 'name': pw.pw_name,
10 'password': pw.pw_passwd,
11 'uid': pw.pw_uid,
12 'gid': pw.pw_gid,
13 'gecos': pw.pw_gecos,
14 'home_dir': pw.pw_dir,
15 'shell': pw.pw_shell,
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/TableModelWithSearch/
H A DTableModelWithSearchAppDelegate.py7 for pw in pwd.getpwall():
9 'name': pw.pw_name,
10 'password': pw.pw_passwd,
11 'uid': str(pw.pw_uid),
12 'gid': str(pw.pw_gid),
13 'gecos': pw.pw_gecos,
14 'home_dir': pw.pw_dir,
15 'shell': pw.pw_shell,
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/TableModel/
H A DTableModelAppDelegate.py7 for pw in pwd.getpwall():
9 'name': pw.pw_name,
10 'password': pw.pw_passwd,
11 'uid': pw.pw_uid,
12 'gid': pw.pw_gid,
13 'gecos': pw.pw_gecos,
14 'home_dir': pw.pw_dir,
15 'shell': pw.pw_shell,
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/TableModelWithSearch/
H A DTableModelWithSearchAppDelegate.py7 for pw in pwd.getpwall():
9 'name': pw.pw_name,
10 'password': pw.pw_passwd,
11 'uid': str(pw.pw_uid),
12 'gid': str(pw.pw_gid),
13 'gecos': pw.pw_gecos,
14 'home_dir': pw.pw_dir,
15 'shell': pw.pw_shell,
/macosx-10.9.5/mail_cmds-29/mail/
H A Dgetname.c57 struct passwd *pw; local
59 if ((pw = getpwuid(uid)) == NULL)
61 return (pw->pw_name);
72 struct passwd *pw; local
74 if ((pw = getpwnam(name)) == NULL)
76 return (pw->pw_uid);
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dverify.c48 struct passwd *pw; local
50 pw = k_getpwnam(user);
51 if(pw == NULL)
53 if(strlen(pw->pw_passwd) == 0 && strlen(password) == 0)
55 if(strcmp(crypt(password, pw->pw_passwd), pw->pw_passwd) == 0)
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dpanedwindow.rb5 pw = Tk::Iwidgets::Panedwindow.new(:width=>300, :height=>300)
7 pw.add('top')
8 pw.add('middle', :margin=>10)
9 pw.add('bottom', :margin=>10, :minimum=>10)
11 pw.pack(:fill=>:both, :expand=>true)
13 pw.child_site_list.each{|pane|
18 pw.fraction(50,30,20)
19 pw.paneconfigure(0, :minimum=>20)
20 pw.paneconfigure('bottom', :margin=>15)
H A Dpanedwindow2.rb5 pw = Tk::Iwidgets::Panedwindow.new(:width=>300, :height=>300)
7 top = pw.add
8 middle = pw.add(:margin=>10)
9 bottom = pw.add(:margin=>10, :minimum=>10)
11 pw.pack(:fill=>:both, :expand=>true)
13 pw.child_site_list.each{|pane|
18 pw.fraction(50,30,20)
19 pw.paneconfigure(0, :minimum=>20) # 0 == pw.index(top)
20 pw
[all...]
/macosx-10.9.5/tcl-102/tk/tk/tests/ttk/
H A Dpanedwindow.test14 ttk::panedwindow .pw
15 } -result .pw
18 pack .pw -expand true -fill both
23 .pw add [ttk::frame .pw.f1]
24 winfo manager .pw.f1
28 pack .pw.f1 -side bottom
29 winfo manager .pw.f1
37 #XXX .pw insert 0 .pw
[all...]
/macosx-10.9.5/system_cmds-597.90.1/chpass.tproj/
H A Dpw_copy.c72 pw_copy(ffd, tfd, pw)
74 struct passwd *pw;
105 if (strcmp(buf, pw->pw_name)) {
113 pw->pw_name, pw->pw_passwd, pw->pw_uid, pw->pw_gid,
114 pw->pw_class, pw->pw_change, pw
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/chpass.tproj/
H A Dpw_copy.c72 pw_copy(ffd, tfd, pw)
74 struct passwd *pw;
105 if (strcmp(buf, pw->pw_name)) {
113 pw->pw_name, pw->pw_passwd, pw->pw_uid, pw->pw_gid,
114 pw->pw_class, pw->pw_change, pw
[all...]
/macosx-10.9.5/Libc-997.90.3/sys/
H A Dgetgroups.c38 struct passwd *pw; local
41 if ((pw = getpwuid(getuid())) == NULL) {
46 if ((n = getgroupcount(pw->pw_name, pw->pw_gid)) == 0) {
53 if (getgrouplist(pw->pw_name, pw->pw_gid, (int *)grouplist, &n) < 0) {
/macosx-10.9.5/remote_cmds-41.90.1/rpc_yppasswdd.tproj/
H A Dyppasswdd_mkpw.c102 _pw_copy(ffd, tfd, pw)
104 struct passwd *pw;
131 if (strcmp(buf, pw->pw_name)) {
139 pw->pw_name, pw->pw_passwd, pw->pw_uid, pw->pw_gid,
140 pw->pw_class, pw->pw_change, pw
200 struct passwd pw; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Djobs.c169 # define job_unstop(pw)
184 register struct process *pw,*pwnext; local
191 for(pw=job.pwlist;pw;pw=pwnext)
193 pwnext = pw->p_nxtjob;
194 if((pw->p_flag&(P_BG|P_DONE)) != (P_BG|P_DONE))
196 pw->p_flag &= ~P_BG;
199 shp->bckpid = pw->p_pid;
200 shp->savexit = pw
269 struct process *pw,*pwnext; local
323 register struct process *pw; local
728 register struct process *pw; local
803 job_set(register struct process *pw) argument
821 job_reset(register struct process *pw) argument
850 register struct process *pw; local
888 register struct process *pw; local
964 job_terminate(register struct process *pw,register int sig) argument
978 job_list(struct process *pw,register int flag) argument
1070 register struct process *pw=job.pwlist; local
1095 job_kill(register struct process *pw,register int sig) argument
1201 register struct process *pw = job.pwlist; local
1236 register struct process *pw, *px; local
1280 register struct process *pw; local
1409 register struct process *pw, *px; local
1425 register struct process *pw; local
1437 job_prmsg(register struct process *pw) argument
1466 register struct process *pw=0,*px; local
1662 job_switch(register struct process *pw,int bgflag) argument
1726 job_fgrp(register struct process *pw, int newgrp) argument
1738 register struct process *pw; local
1767 register struct process *pw; local
1815 job_unlink(register struct process *pw) argument
1847 register struct process *pw; local
1963 register struct process *pw, *px, *pwnext; local
[all...]
H A Djobs.c.orig169 # define job_unstop(pw)
184 register struct process *pw,*pwnext;
191 for(pw=job.pwlist;pw;pw=pwnext)
193 pwnext = pw->p_nxtjob;
194 if((pw->p_flag&(P_BG|P_DONE)) != (P_BG|P_DONE))
196 pw->p_flag &= ~P_BG;
199 shp->bckpid = pw->p_pid;
200 shp->savexit = pw
[all...]
/macosx-10.9.5/shell_cmds-175/id/
H A Did.c86 struct passwd *pw; local
160 pw = *argv ? who(*argv) : NULL;
162 if (Mflag && pw != NULL)
173 id = pw ? pw->pw_gid : rflag ? getgid() : getegid();
182 id = pw ? pw->pw_uid : rflag ? getuid() : geteuid();
183 if (nflag && (pw = getpwuid(id)))
184 (void)printf("%s\n", pw->pw_name);
191 group(pw, nfla
222 pretty(struct passwd *pw) argument
262 id_print(struct passwd *pw, int use_ggl, int p_euid, int p_egid) argument
363 group(struct passwd *pw, int nflag) argument
449 struct passwd *pw; local
467 pline(struct passwd *pw) argument
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/MutableTableModel/
H A DTableModelAppDelegate.py8 for pw in pwd.getpwall():
10 'name': pw.pw_name,
11 'password': pw.pw_passwd,
12 'uid': pw.pw_uid,
13 'gid': pw.pw_gid,
14 'gecos': pw.pw_gecos,
15 'home_dir': pw.pw_dir,
16 'shell': pw.pw_shell,
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/MutableTableModel/
H A DTableModelAppDelegate.py8 for pw in pwd.getpwall():
10 'name': pw.pw_name,
11 'password': pw.pw_passwd,
12 'uid': pw.pw_uid,
13 'gid': pw.pw_gid,
14 'gecos': pw.pw_gecos,
15 'home_dir': pw.pw_dir,
16 'shell': pw.pw_shell,
/macosx-10.9.5/bind9-45.100/bind9/bin/confgen/unix/
H A Dos.c35 struct passwd *pw; local
37 pw = getpwnam(user);
38 if (pw == NULL) {
42 return (fchown(fileno(fd), pw->pw_uid, -1));
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/saslauthd/
H A Dauth_getpwent.c73 struct passwd *pw; /* pointer to passwd file entry */
76 pw = getpwnam(login);
79 if (pw == NULL) {
83 if (strcmp(pw->pw_passwd, (const char *)crypt(password, pw->pw_passwd))) {
72 struct passwd *pw; /* pointer to passwd file entry */ local
/macosx-10.9.5/uucp-11/uucp/contrib/
H A Damiga.c32 struct passwd *pw; local
43 pw = getpwnam("uucp"); /* get the Password Entry for uucp */
44 if (pw == NULL) {
48 setgid(pw->pw_gid); /* set gid to uucp */
49 setuid(pw->pw_uid); /* set uid to uucp */
/macosx-10.9.5/system_cmds-597.90.1/chkpasswd.tproj/
H A Dfile_passwd.c63 static struct passwd pw = {0}; local
67 if (pw.pw_name != NULL) free(pw.pw_name);
68 pw.pw_name = NULL;
69 if (pw.pw_passwd != NULL) free(pw.pw_passwd);
70 pw.pw_passwd = NULL;
71 if (pw.pw_gecos != NULL) free(pw.pw_gecos);
72 pw
114 struct passwd *pw; local
134 struct passwd *pw; local
250 struct passwd *pw; local
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/chkpasswd.tproj/
H A Dfile_passwd.c63 static struct passwd pw = {0}; local
67 if (pw.pw_name != NULL) free(pw.pw_name);
68 pw.pw_name = NULL;
69 if (pw.pw_passwd != NULL) free(pw.pw_passwd);
70 pw.pw_passwd = NULL;
71 if (pw.pw_gecos != NULL) free(pw.pw_gecos);
72 pw
114 struct passwd *pw; local
134 struct passwd *pw; local
250 struct passwd *pw; local
[all...]

Completed in 383 milliseconds

1234567891011>>