Lines Matching refs:passwd
34 TYPE(struct passwd); in pwd_h()
35 STRUCT_MEMBER(struct passwd, char*, pw_name); in pwd_h()
36 STRUCT_MEMBER(struct passwd, uid_t, pw_uid); in pwd_h()
37 STRUCT_MEMBER(struct passwd, gid_t, pw_gid); in pwd_h()
38 STRUCT_MEMBER(struct passwd, char*, pw_dir); in pwd_h()
39 STRUCT_MEMBER(struct passwd, char*, pw_shell); in pwd_h()
46 FUNCTION(getpwent, struct passwd* (*f)(void)); in pwd_h()
47 FUNCTION(getpwnam, struct passwd* (*f)(const char*)); in pwd_h()
48 FUNCTION(getpwnam_r, int (*f)(const char*, struct passwd*, char*, size_t, struct passwd**)); in pwd_h()
49 FUNCTION(getpwuid, struct passwd* (*f)(uid_t)); in pwd_h()
50 FUNCTION(getpwuid_r, int (*f)(uid_t, struct passwd*, char*, size_t, struct passwd**)); in pwd_h()