Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Ducred.h138 u_int sc_supp_groups_nb; /* number of supplementary groups */ member
179 u_int sc_supp_groups_nb; member
/freebsd/sys/kern/
H A Dkern_prot.c519 if (wcred->sc_supp_groups_nb > ngroups_max) in kern_setcred_copyin_supp_groups()
528 *groups = wcred->sc_supp_groups_nb < CRED_SMALLGROUPS_NB ? in kern_setcred_copyin_supp_groups()
529 smallgroups : malloc((wcred->sc_supp_groups_nb + 1) * in kern_setcred_copyin_supp_groups()
533 wcred->sc_supp_groups_nb * sizeof(*groups)); in kern_setcred_copyin_supp_groups()
538 wcred->sc_supp_groups_nb = 0; in kern_setcred_copyin_supp_groups()
684 if (wcred->sc_supp_groups_nb > ngroups_max) in kern_setcred()
690 groups = wcred->sc_supp_groups_nb < CRED_SMALLGROUPS_NB ? in kern_setcred()
692 malloc((wcred->sc_supp_groups_nb + 1) * in kern_setcred()
695 wcred->sc_supp_groups_nb * sizeof(*groups)); in kern_setcred()
729 int ngrp = wcred->sc_supp_groups_nb; in kern_setcred()
[all …]
/freebsd/usr.bin/mdo/
H A Dmdo.c87 wcred.sc_supp_groups_nb = ngroups - 1; in main()