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\
118 pwd.getpwuid
125 See `help(pwd)` for more on password database entries.
147 /* Note: 'pwd' will be used via pointer 'p' on getpwuid_r success. */ in pwd_getpwuid()
148 struct passwd pwd; in pwd_getpwuid() local
164 status = getpwuid_r(uid, &pwd, buf, bufsize, &p); in pwd_getpwuid()
203 pwd.getpwnam
210 See `help(pwd)` for more on password database entries.
230 /* Note: 'pwd' will be used via pointer 'p' on getpwnam_r success. */ in pwd_getpwnam_impl()
231 struct passwd pwd; in pwd_getpwnam_impl() local
247 status = getpwnam_r(name_chars, &pwd, buf, bufsize, &p); in pwd_getpwnam_impl()
284 pwd.getpwall
288 See help(pwd) for more on password database entries.
358 .m_name = "pwd",