Lines Matching refs:pwdres
3268 struct passwd *pwdres; in TEST() local
3270 int res = getpwuid_r(0, &pwd, buf, sizeof(buf), &pwdres); in TEST()
3277 EXPECT_NOT_POISONED(pwdres); in TEST()
3282 struct passwd *pwdres; in TEST() local
3284 int res = getpwnam_r("root", &pwd, buf, sizeof(buf), &pwdres); in TEST()
3291 EXPECT_NOT_POISONED(pwdres); in TEST()
3296 struct passwd *pwdres; in TEST() local
3302 EXPECT_UMR(res = getpwnam_r(s, &pwd, buf, sizeof(buf), &pwdres)); in TEST()
3332 struct passwd *pwdres; in TEST() local
3335 int res = getpwent_r(&pwd, buf, sizeof(buf), &pwdres); in TEST()
3341 EXPECT_NOT_POISONED(pwdres); in TEST()