Lines Matching refs:passwd
43 alloc_pw(struct passwd *target, struct passwd *source)
53 free_pw(struct passwd *source)
156 login_alias(char *login_name, uid_t uid, struct passwd *in_out)
165 struct passwd pw2;
169 struct passwd pw3;
174 /* use the other passwd-data including shell */
194 x_getlogin(uid_t uid, struct passwd *in_out)
227 * Simpler than getpwnam_r, retrieves the passwd result by name and stores the
231 x_getpwnam(const char *name, struct passwd *result)
233 struct passwd *ptr = getpwnam(name);
247 * Simpler than getpwuid_r, retrieves the passwd result by uid and stores the
251 x_getpwuid(uid_t uid, struct passwd *result)
253 struct passwd *ptr = getpwuid((uid_t) uid);