Lines Matching full: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. */ in pwd_getpwuid()
146 struct passwd pwd; in pwd_getpwuid() local
162 status = getpwuid_r(uid, &pwd, buf, bufsize, &p); in pwd_getpwuid()
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. */ in pwd_getpwnam_impl()
229 struct passwd pwd; in pwd_getpwnam_impl() local
245 status = getpwnam_r(name_chars, &pwd, buf, bufsize, &p); in pwd_getpwnam_impl()
282 pwd.getpwall
286 See help(pwd) for more on password database entries.
356 .m_name = "pwd",