Searched refs:pwd_storage (Results 1 – 1 of 1) sorted by relevance
/bionic/tests/ |
D | grp_pwd_test.cpp | 105 passwd pwd_storage; in check_getpwuid_r() local 111 result = getpwuid_r(uid, &pwd_storage, buf, sizeof(buf), &pwd); in check_getpwuid_r() 120 passwd pwd_storage; in check_getpwnam_r() local 126 result = getpwnam_r(username, &pwd_storage, buf, sizeof(buf), &pwd); in check_getpwnam_r() 303 passwd pwd_storage; in TEST() local 306 int result = getpwnam_r("root", &pwd_storage, buf + 1, sizeof(buf) - 1, &pwd); in TEST() 316 passwd pwd_storage; in TEST() local 319 int result = getpwuid_r(0, &pwd_storage, buf + 1, sizeof(buf) - 1, &pwd); in TEST() 329 passwd pwd_storage[2]; in TEST() local 332 int result = getpwnam_r("root", &pwd_storage[0], buf[0], sizeof(buf[0]), &pwd[0]); in TEST() [all …]
|