Home | History | Annotate | Download | only in src

Lines Matching refs:rbuflen

285 	long rbuflen;
355 rbuflen = sysconf(_SC_GETPW_R_SIZE_MAX);
356 if (rbuflen <= 0)
358 rbuf = malloc(rbuflen);
362 while ((retval = getpwent_r(&pwstorage, rbuf, rbuflen, &pwbuf)) == 0) {
819 long rbuflen;
838 rbuflen = sysconf(_SC_GETPW_R_SIZE_MAX);
839 if (rbuflen <= 0)
841 rbuf = malloc(rbuflen);
876 retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent);