Lines Matching refs:alt_grouplist
4118 gid_t* alt_grouplist = grouplist; in posix_getgroups() local
4132 alt_grouplist = grouplist; in posix_getgroups()
4134 alt_grouplist = PyMem_Malloc(n * sizeof(gid_t)); in posix_getgroups()
4135 if (alt_grouplist == NULL) { in posix_getgroups()
4141 n = getgroups(n, alt_grouplist); in posix_getgroups()
4143 if (alt_grouplist != grouplist) { in posix_getgroups()
4144 PyMem_Free(alt_grouplist); in posix_getgroups()
4158 alt_grouplist = grouplist; in posix_getgroups()
4160 alt_grouplist = PyMem_Malloc(n * sizeof(gid_t)); in posix_getgroups()
4161 if (alt_grouplist == NULL) { in posix_getgroups()
4165 n = getgroups(n, alt_grouplist); in posix_getgroups()
4167 PyMem_Free(alt_grouplist); in posix_getgroups()
4181 PyObject *o = _PyInt_FromGid(alt_grouplist[i]); in posix_getgroups()
4191 if (alt_grouplist != grouplist) { in posix_getgroups()
4192 PyMem_Free(alt_grouplist); in posix_getgroups()