Searched refs:retpwptr (Results 1 – 3 of 3) sorted by relevance
/PHP-5.4/ext/posix/ |
H A D | posix.c | 1164 struct passwd *retpwptr = NULL; in PHP_FUNCTION() local 1181 ret = getpwuid_r(uid, &_pw, pwbuf, pwbuflen, &retpwptr); in PHP_FUNCTION() 1182 if (ret || retpwptr == NULL) { in PHP_FUNCTION()
|
/PHP-5.4/ext/standard/ |
H A D | filestat.c | 530 struct passwd *retpwptr = NULL; in php_get_uid_by_name() local 539 if (getpwnam_r(name, &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) { in php_get_uid_by_name()
|
/PHP-5.4/main/ |
H A D | main.c | 1237 struct passwd *retpwptr = NULL; in php_get_current_user() 1245 if (getpwuid_r(pstat->st_uid, &_pw, pwbuf, pwbuflen, &retpwptr) != 0) { in php_get_current_user()
|
Completed in 21 milliseconds