Home
last modified time | relevance | path

Searched refs:pwres (Results 1 – 2 of 2) sorted by relevance

/NextBSD/lib/libedit/
HDfilecomplete.c77 struct passwd pwres; in fn_tilde_expand() local
103 if (getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf), in fn_tilde_expand()
107 pass = getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand()
113 if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0) in fn_tilde_expand()
116 pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand()
HDreadline.c1737 struct passwd pwres; in username_completion_function() local
1753 getpwent_r(&pwres, pwbuf, sizeof(pwbuf), &pass) == 0 && pass != NULL in username_completion_function()