Home
last modified time | relevance | path

Searched refs:pwdres (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
Dgetpwnam_r_invalid_user.cc14 struct passwd *pwdres; in main() local
16 int res = getpwnam_r("no-such-user", &pwd, buf, sizeof(buf), &pwdres); in main()
18 assert(pwdres == 0); in main()
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc3337 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()
[all …]