Lines Matching refs:ngroups
467 int ngroups; in in_gid() local
478 ngroups = getgroups_alloc(&gids); in in_gid()
479 if (ngroups < 0) in in_gid()
480 return ngroups; in in_gid()
482 return gid_list_has(gids, ngroups, gid); in in_gid()
521 int ngroups = 8; in getgroups_alloc() local
524 allocated = new(gid_t, ngroups); in getgroups_alloc()
530 ngroups = getgroups(ngroups, p); in getgroups_alloc()
531 if (ngroups >= 0) in getgroups_alloc()
542 ngroups = getgroups(0, NULL); in getgroups_alloc()
543 if (ngroups < 0) in getgroups_alloc()
545 if (ngroups == 0) in getgroups_alloc()
550 p = allocated = new(gid_t, ngroups); in getgroups_alloc()
556 return ngroups; in getgroups_alloc()