Searched defs:pwbuf (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_5/ext/posix/ |
| H A D | posix.c | 1116 struct passwd pwbuf; local 1131 pw = &pwbuf; 1166 char *pwbuf; local 1179 pwbuf = emalloc(pwbuflen); 1181 ret = getpwuid_r(uid, &_pw, pwbuf, pwbuflen, &retpwptr); 1184 efree(pwbuf); 1202 efree(pwbuf);
|
| /PHP_5_5/ext/standard/ |
| H A D | filestat.c | 532 char *pwbuf; local 538 pwbuf = emalloc(pwbuflen); 539 if (getpwnam_r(name, &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) { 540 efree(pwbuf); 543 efree(pwbuf);
|
| /PHP_5_5/main/ |
| H A D | fopen_wrappers.c | 378 char *pwbuf; local 384 pwbuf = emalloc(pwbuflen); 393 if (getpwnam_r(user, &pwstruc, pwbuf, pwbuflen, &pw)) { 394 efree(pwbuf); 406 efree(pwbuf);
|
Completed in 7 milliseconds