Lines Matching refs:pwdres
3337 struct passwd *pwdres; in TEST() local
3339 int res = getpwuid_r(0, &pwd, buf, sizeof(buf), &pwdres); in TEST()
3346 EXPECT_NOT_POISONED(pwdres); in TEST()
3351 struct passwd *pwdres; in TEST() local
3353 int res = getpwnam_r("root", &pwd, buf, sizeof(buf), &pwdres); in TEST()
3360 EXPECT_NOT_POISONED(pwdres); in TEST()
3365 struct passwd *pwdres; in TEST() local
3371 EXPECT_UMR(res = getpwnam_r(s, &pwd, buf, sizeof(buf), &pwdres)); in TEST()
3401 struct passwd *pwdres; in TEST() local
3404 int res = getpwent_r(&pwd, buf, sizeof(buf), &pwdres); in TEST()
3410 EXPECT_NOT_POISONED(pwdres); in TEST()