Lines Matching full:pwdres
3288 struct passwd *pwdres;
3290 int res = getpwuid_r(0, &pwd, buf, sizeof(buf), &pwdres);
3297 EXPECT_NOT_POISONED(pwdres);
3302 struct passwd *pwdres;
3304 int res = getpwnam_r("root", &pwd, buf, sizeof(buf), &pwdres);
3311 EXPECT_NOT_POISONED(pwdres);
3316 struct passwd *pwdres;
3322 EXPECT_UMR(res = getpwnam_r(s, &pwd, buf, sizeof(buf), &pwdres));
3352 struct passwd *pwdres;
3355 int res = getpwent_r(&pwd, buf, sizeof(buf), &pwdres);
3361 EXPECT_NOT_POISONED(pwdres);