Lines Matching refs:result
47 struct passwd *result;
52 errno = getpwnam_r(name, pwd_r, pwbuf, pwbuf_size, &result);
54 if (result != NULL)
65 struct passwd *result;
70 errno = getpwuid_r(uid, pwd_r, pwbuf, pwbuf_size, &result);
72 if (result != NULL)
79 struct group *result;
84 errno = getgrnam_r(name, grp_r, grbuf, grbuf_size, &result);
86 if (result != NULL)
93 struct group *result;
98 errno = getgrgid_r(gid, grp_r, grbuf, grbuf_size, &result);
100 if (result != NULL)