Lines Matching refs:grpbufsiz
2887 static size_t grpbufsiz = 0;
2907 if (grpbufsiz == 0)
2908 grpbufsiz = sysconf(_SC_GETGR_R_SIZE_MAX);
2909 buf = alloca(grpbufsiz);
2910 grpp = getgrnam_r(name, &grp, buf, grpbufsiz);
2913 grpp = getgrnam_r(lower_name, &grp, buf, grpbufsiz);
2940 static size_t grpbufsiz = 0;
2955 if (grpbufsiz == 0)
2956 grpbufsiz = sysconf(_SC_GETGR_R_SIZE_MAX);
2957 buf = alloca(grpbufsiz);
2959 if (getgrgid_r(pid, &grp, buf, grpbufsiz) == NULL) {