Searched refs:grp (Results 76 - 100 of 250) sorted by relevance

12345678910

/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-srio.h254 uint64_t grp : 4; /**< Created by the hardware from an entry in a member in struct:__anon8759::__anon8762::__anon8763
289 uint64_t grp : 4;
/freebsd-11-stable/contrib/openbsm/bin/auditreduce/
H A Dauditreduce.c55 #include <grp.h>
235 select_rgid(int grp) argument
240 if (grp != p_rgid)
627 struct group *grp; local
714 if ((grp = getgrnam(optarg)) == NULL)
716 p_egid = grp->gr_gid;
725 if ((grp = getgrnam(optarg)) == NULL)
727 p_rgid = grp->gr_gid;
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/id/
H A Dpwgr.c39 #include <grp.h>
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpd_locl.h127 #include <grp.h>
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dpwcache.c37 #include <grp.h>
H A Dport-aix.c434 char *cp, *grplist, *grp; local
454 while ((grp = strsep(&grplist, ",")) != NULL) {
455 l = strtol(grp, NULL, 10);
/freebsd-11-stable/contrib/dma/
H A Ddma-mbox-create.c46 #include <grp.h>
/freebsd-11-stable/tools/build/
H A DMakefile14 _WITH_PWCACHEDB!= grep -c pwcache_groupdb /usr/include/grp.h || true
/freebsd-11-stable/sbin/fsdb/
H A Dfsdbutil.c41 #include <grp.h>
115 struct group *grp; local
191 if ((grp = getgrgid(DIP(dp, di_gid))))
192 printf("GRP=%s ", grp->gr_name);
/freebsd-11-stable/usr.bin/find/
H A Dls.c45 #include <grp.h>
/freebsd-11-stable/contrib/tcp_wrappers/
H A Doptions.c49 #include <grp.h>
257 struct group *grp; local
260 if ((grp = getgrnam(value)) == 0)
264 if (dry_run == 0 && setgid(grp->gr_gid))
/freebsd-11-stable/contrib/sendmail/src/
H A Dconf.h44 # include <grp.h>
/freebsd-11-stable/usr.bin/quota/
H A Dquota.c65 #include <grp.h>
236 struct group *grp = getgrgid(gid); local
239 if (grp == NULL)
242 name = grp->gr_name;
252 struct group *grp = getgrnam(name); local
254 if (grp == NULL) {
258 return(showquotas(GRPQUOTA, grp->gr_gid, name));
/freebsd-11-stable/lib/libc/gen/
H A Dgetnetgrent.c676 struct netgrp *grp; local
712 grp = malloc(sizeof(*grp));
713 if (grp == NULL)
715 ng = grp->ng_str;
716 bzero(grp, sizeof(*grp));
750 free(grp);
755 grp->ng_next = st->st_gr;
756 st->st_gr = grp;
[all...]
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dentry.c31 #include <grp.h>
304 struct group *grp; local
339 grp = NULL;
342 if ((grp = getgrnam(s + 1)) == NULL) {
353 if (grp != NULL)
354 pw->pw_gid = grp->gr_gid;
/freebsd-11-stable/contrib/tcsh/
H A Dtc.prompt.c216 int grp, gcnt; local
220 for (grp = 0; grp < gcnt; ++grp)
221 if (grps[grp] == DOMAIN_GROUP_RID_ADMINS)
223 Scp = (grp < gcnt) ? PRCHROOT : PRCH;
/freebsd-11-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dallow.py34 import grp
80 name = grp.getgrgid(int(ws)).gr_name
182 id = decodeid(w, grp.getgrnam,
194 id = grp.getgrnam(w)[2]
/freebsd-11-stable/contrib/smbfs/smbutil/
H A Ddumptree.c5 #include <grp.h>
/freebsd-11-stable/sbin/mknod/
H A Dmknod.c55 #include <grp.h>
/freebsd-11-stable/usr.sbin/chroot/
H A Dchroot.c48 #include <grp.h>
/freebsd-11-stable/tests/sys/mac/bsdextended/
H A Dugidfw_test.c37 #include <grp.h>
/freebsd-11-stable/usr.sbin/pw/
H A Dpw_vpw.c36 #include <grp.h>
/freebsd-11-stable/contrib/openpam/bin/su/
H A Dsu.c46 #include <grp.h>
/freebsd-11-stable/sbin/fsck_ffs/
H A Dmain.c59 #include <grp.h>
237 struct group *grp; local
361 } else if ((grp = getgrnam("operator")) == NULL ||
363 chown(snapname, -1, grp->gr_gid) < 0 ||
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_cmp.c367 const EC_GROUP *grp = NULL; local
370 grp = EC_KEY_get0_group(pkey->pkey.ec);
371 if (!grp)
373 curve_nid = EC_GROUP_get_curve_name(grp);

Completed in 146 milliseconds

12345678910