Lines Matching refs:groups
69 unsigned int groups = 0; in unx_create_cred() local
83 groups = acred->group_info->ngroups; in unx_create_cred()
84 if (groups > UNX_NGROUPS) in unx_create_cred()
85 groups = UNX_NGROUPS; in unx_create_cred()
88 for (i = 0; i < groups; i++) in unx_create_cred()
125 unsigned int groups = 0; in unx_match() local
133 groups = acred->group_info->ngroups; in unx_match()
134 if (groups > UNX_NGROUPS) in unx_match()
135 groups = UNX_NGROUPS; in unx_match()
136 for (i = 0; i < groups ; i++) in unx_match()
139 if (groups < UNX_NGROUPS && gid_valid(cred->uc_gids[groups])) in unx_match()