Lines Matching defs:pwd
7 #include <pwd.h>
11 module pwd
27 "pwd.struct_passwd: Results from getpw*() routines.\n\n\
33 "pwd.struct_passwd",
44 items from the password database (see `<pwd.h>'), in order:\n\
116 pwd.getpwuid
123 See `help(pwd)` for more on password database entries.
145 /* Note: 'pwd' will be used via pointer 'p' on getpwuid_r success. */
146 struct passwd pwd;
162 status = getpwuid_r(uid, &pwd, buf, bufsize, &p);
201 pwd.getpwnam
208 See `help(pwd)` for more on password database entries.
228 /* Note: 'pwd' will be used via pointer 'p' on getpwnam_r success. */
229 struct passwd pwd;
245 status = getpwnam_r(name_chars, &pwd, buf, bufsize, &p);
282 pwd.getpwall
286 See help(pwd) for more on password database entries.
356 .m_name = "pwd",