Searched defs:pwbuflen (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/posix/ |
| H A D | posix.c | 1165 long pwbuflen; local 1175 pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); 1176 if (pwbuflen < 1) { 1179 pwbuf = emalloc(pwbuflen); 1181 ret = getpwuid_r(uid, &_pw, pwbuf, pwbuflen, &retpwptr);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | filestat.c | 531 long pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); local 534 if (pwbuflen < 1) { 538 pwbuf = emalloc(pwbuflen); 539 if (getpwnam_r(name, &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) {
|
| /PHP_TRUNK/main/ |
| H A D | fopen_wrappers.c | 377 long pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); local 380 if (pwbuflen < 1) { 384 pwbuf = emalloc(pwbuflen); 393 if (getpwnam_r(user, &pwstruc, pwbuf, pwbuflen, &pw)) {
|
Completed in 7 milliseconds