Lines Matching defs:pw
481 struct passwd *pw, pwx;486 if (!getpwuid_r(uid, &pwx, pwbuf, sizeof(pwbuf), &pw)487 && pw != NULL && pw->pw_dir[0] != 0)488 home_env = pw->pw_dir;490 struct passwd *pw;492 pw = getpwuid(getuid());493 home_env = pw->pw_dir;