Searched refs:ngroups (Results 26 - 41 of 41) sorted by relevance

12

/freebsd-11-stable/contrib/pjdfstest/
H A Dpjdfstest.c1000 long ngroups; local
1004 ngroups = sysconf(_SC_NGROUPS_MAX);
1005 assert(ngroups > 0);
1006 gidset = malloc(sizeof(*gidset) * ngroups);
1010 if (i >= ngroups) {
/freebsd-11-stable/sys/fs/ext2fs/
H A Dext2_vfsops.c813 int i, ngroups; local
831 for (i = 0, ngroups = 0; i < fs->e2fs_gcount; i++) {
833 ngroups++;
836 ngroups = fs->e2fs_gcount;
842 overhead += ngroups * (1 /* superblock */ + ngdb);
/freebsd-11-stable/contrib/pf/authpf/
H A Dauthpf.c504 int gl_init = 0, ngroups = NGROUPS + 1; local
541 pw->pw_gid, groups, &ngroups);
545 for ( cnt = 0; cnt < ngroups; cnt++) {
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-pim.c146 int ngroups, njoin, nprune; local
195 ngroups = bp[3];
198 while (ngroups--) {
H A Dprint-icmp6.c1415 u_int group, nsrcs, ngroups; local
1425 ngroups = EXTRACT_16BITS(&icp->icmp6_data16[1]);
1426 ND_PRINT((ndo,", %d group record(s)", ngroups));
1430 for (i = 0; i < ngroups; i++) {
/freebsd-11-stable/sys/dev/iwn/
H A Dif_iwnreg.h1171 uint8_t ngroups; member in struct:iwn_phy_calib
1178 uint8_t ngroups; member in struct:iwn5000_phy_calib_crystal
1188 uint8_t ngroups; member in struct:iwn5000_phy_calib_temp_offset
1199 uint8_t ngroups; member in struct:iwn5000_phy_calib_temp_offsetv2
1210 uint8_t ngroups; member in struct:iwn_phy_calib_gain
H A Dif_iwn.c5933 cmd.ngroups = 1;
5989 cmd.ngroups = 1;
7633 cmd.ngroups = 1;
7649 cmd.ngroups = 1;
7667 cmd.ngroups = 1;
/freebsd-11-stable/sys/kern/
H A Dkern_prot.c1938 int ngroups; local
1944 ngroups = MIN(cr->cr_ngroups, XU_NGROUPS);
1945 xcr->cr_ngroups = ngroups;
1947 ngroups * sizeof(*cr->cr_groups));
H A Duipc_usrreq.c2120 int ngroups; local
2123 ngroups = MIN(td->td_ucred->cr_ngroups, CMGROUP_MAX);
2124 m = sbcreatecontrol(NULL, SOCKCREDSIZE(ngroups), SCM_CREDS, SOL_SOCKET);
2133 sc->sc_ngroups = ngroups;
H A Dkern_mib.c125 SYSCTL_INT(_kern, KERN_NGROUPS, ngroups, CTLFLAG_RDTUN |
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc6963 int *ngroups) {
6966 COMMON_INTERCEPTOR_ENTER(ctx, getgrouplist, name, basegid, groups, ngroups);
6969 if (ngroups)
6970 COMMON_INTERCEPTOR_READ_RANGE(ctx, ngroups, sizeof(*ngroups));
6971 res = REAL(getgrouplist)(name, basegid, groups, ngroups);
6972 if (!res && groups && ngroups) {
6973 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, groups, sizeof(*groups) * (*ngroups));
6974 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ngroups, sizeof(*ngroups));
[all...]
/freebsd-11-stable/sys/security/mac/
H A Dmac_framework.h117 int mac_cred_check_setgroups(struct ucred *cred, int ngroups,
H A Dmac_policy.h145 typedef int (*mpo_cred_check_setgroups_t)(struct ucred *cred, int ngroups,
/freebsd-11-stable/sys/security/mac_stub/
H A Dmac_stub.c247 stub_cred_check_setgroups(struct ucred *cred, int ngroups, argument
/freebsd-11-stable/contrib/sendmail/src/
H A Dconf.c2966 setgroups(ngroups, grouplist)
2967 int ngroups;
/freebsd-11-stable/sys/security/mac_test/
H A Dmac_test.c317 test_cred_check_setgroups(struct ucred *cred, int ngroups, argument

Completed in 266 milliseconds

12