Searched refs:pwbuf (Results 1 – 4 of 4) sorted by relevance
/external/libedit/src/ |
D | filecomplete.c | 76 char pwbuf[1024]; in fn_tilde_expand() local 101 if (getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf), in fn_tilde_expand() 105 pass = getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand() 111 if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0) in fn_tilde_expand() 114 pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand()
|
/external/e2fsprogs/e2fsck/ |
D | profile.c | 483 char pwbuf[BUFSIZ]; in profile_open_file() local 486 if (!getpwuid_r(uid, &pwx, pwbuf, sizeof(pwbuf), &pw) in profile_open_file()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 1239 INTERCEPTOR(int, getpwent_r, __sanitizer_passwd *pwbuf, char *buf, 1242 COMMON_INTERCEPTOR_ENTER(ctx, getpwent_r, pwbuf, buf, buflen, pwbufp); 1246 int res = REAL(getpwent_r)(pwbuf, buf, buflen, pwbufp); 1254 INTERCEPTOR(int, fgetpwent_r, void *fp, __sanitizer_passwd *pwbuf, char *buf, 1257 COMMON_INTERCEPTOR_ENTER(ctx, fgetpwent_r, fp, pwbuf, buf, buflen, pwbufp); 1261 int res = REAL(fgetpwent_r)(fp, pwbuf, buf, buflen, pwbufp); 1269 INTERCEPTOR(int, getgrent_r, __sanitizer_group *pwbuf, char *buf, SIZE_T buflen, 1272 COMMON_INTERCEPTOR_ENTER(ctx, getgrent_r, pwbuf, buf, buflen, pwbufp); 1276 int res = REAL(getgrent_r)(pwbuf, buf, buflen, pwbufp); 1284 INTERCEPTOR(int, fgetgrent_r, void *fp, __sanitizer_group *pwbuf, char *buf, [all …]
|
/external/ppp/pppd/ |
D | eap.c | 547 tpw.pebuf.password.len = t_fromb64((char *)tpw.pwbuf, 549 tpw.pebuf.password.data = tpw.pwbuf;
|