Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Ddbutils.c2962 static size_t grpbufsiz = 0; in ns_lookup_byname() local
2982 if (grpbufsiz == 0) in ns_lookup_byname()
2983 grpbufsiz = sysconf(_SC_GETGR_R_SIZE_MAX); in ns_lookup_byname()
2984 buf = alloca(grpbufsiz); in ns_lookup_byname()
2985 grpp = getgrnam_r(name, &grp, buf, grpbufsiz); in ns_lookup_byname()
2988 grpp = getgrnam_r(lower_name, &grp, buf, grpbufsiz); in ns_lookup_byname()
3015 static size_t grpbufsiz = 0; in ns_lookup_bypid() local
3030 if (grpbufsiz == 0) in ns_lookup_bypid()
3031 grpbufsiz = sysconf(_SC_GETGR_R_SIZE_MAX); in ns_lookup_bypid()
3032 buf = alloca(grpbufsiz); in ns_lookup_bypid()
[all …]