Searched refs:grp (Results 51 - 75 of 216) sorted by relevance

123456789

/freebsd-9.3-release/lib/libugidfw/
H A Dugidfw.c42 #include <grp.h>
62 struct group *grp; local
148 grp = getgrgid(rule->mbr_subject.mbs_gid_min);
149 if (grp != NULL) {
151 grp->gr_name);
166 grp = getgrgid(rule->mbr_subject.mbs_gid_max);
167 if (grp != NULL) {
169 grp->gr_name);
282 grp = getgrgid(rule->mbr_object.mbo_gid_min);
283 if (grp !
561 struct group *grp; local
[all...]
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_borrow_cred.c44 #include <grp.h>
/freebsd-9.3-release/contrib/smbfs/lib/smb/
H A Dfile.c47 #include <grp.h>
H A Dprint.c46 #include <grp.h>
/freebsd-9.3-release/crypto/openssh/
H A Dgroupaccess.c31 #include <grp.h>
/freebsd-9.3-release/lib/libc/posix1e/
H A Dacl_id_to_name.c39 #include <grp.h>
/freebsd-9.3-release/lib/libutil/
H A Dpty.c45 #include <grp.h>
H A Dquotafile.c41 #include <grp.h>
117 struct group *grp; local
184 grp = getgrnam(QUOTAGROUP);
185 fchown(qf->fd, 0, grp ? grp->gr_gid : 0);
509 struct group *grp; local
553 grp = getgrnam(QUOTAGROUP);
554 fchown(newqf->fd, 0, grp ? grp->gr_gid : 0);
/freebsd-9.3-release/libexec/mknetid/
H A Dparse_group.c48 #include <grp.h>
/freebsd-9.3-release/usr.sbin/sysinstall/
H A Ddos.c46 #include <grp.h>
/freebsd-9.3-release/contrib/amd/fixmount/
H A Dfixmount.c273 groups grp; local
432 grp = exp->ex_groups;
433 if (grp == NULL) {
436 while (grp) {
437 printf("%s ", grp->gr_name);
438 grp = grp->gr_next;
/freebsd-9.3-release/usr.sbin/mount_nwfs/
H A Dmount_nwfs.c44 #include <grp.h>
193 struct group *grp; local
195 grp = isdigit(optarg[0]) ?
197 if (grp == NULL)
199 mdata.gid = grp->gr_gid;
/freebsd-9.3-release/usr.sbin/cron/lib/
H A Dentry.c31 #include <grp.h>
269 struct group *grp; local
304 grp = NULL;
307 if ((grp = getgrnam(s + 1)) == NULL) {
318 if (grp != NULL)
319 pw->pw_gid = grp->gr_gid;
/freebsd-9.3-release/contrib/openbsm/bin/auditreduce/
H A Dauditreduce.c56 #include <grp.h>
232 select_rgid(int grp) argument
237 if (grp != p_rgid)
605 struct group *grp; local
692 if ((grp = getgrnam(optarg)) == NULL)
694 p_egid = grp->gr_gid;
703 if ((grp = getgrnam(optarg)) == NULL)
705 p_rgid = grp->gr_gid;
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-srio.h253 uint64_t grp : 4; /**< Created by the hardware from an entry in a member in struct:__anon6617::__anon6620::__anon6621
288 uint64_t grp : 4;
H A Dcvmx-wqe.h256 uint64_t grp : 4; member in struct:__anon6674
/freebsd-9.3-release/contrib/sendmail/src/
H A Dconf.h43 # include <grp.h>
/freebsd-9.3-release/contrib/tcp_wrappers/
H A Doptions.c49 #include <grp.h>
255 struct group *grp; local
258 if ((grp = getgrnam(value)) == 0)
262 if (dry_run == 0 && setgid(grp->gr_gid))
/freebsd-9.3-release/crypto/heimdal/appl/ftp/ftpd/
H A Dftpd_locl.h127 #include <grp.h>
/freebsd-9.3-release/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-9.3-release/sbin/fsdb/
H A Dfsdbutil.c39 #include <grp.h>
113 struct group *grp; local
191 if ((grp = getgrgid(DIP(dp, di_gid))))
192 printf("GRP=%s ", grp->gr_name);
/freebsd-9.3-release/tools/regression/mac/mac_bsdextended/
H A Dtest_ugidfw.c36 #include <grp.h>
/freebsd-9.3-release/usr.bin/find/
H A Dls.c45 #include <grp.h>
/freebsd-9.3-release/usr.bin/quota/
H A Dquota.c65 #include <grp.h>
237 struct group *grp = getgrgid(gid); local
240 if (grp == NULL)
243 name = grp->gr_name;
253 struct group *grp = getgrnam(name); local
255 if (grp == NULL) {
259 return(showquotas(GRPQUOTA, grp->gr_gid, name));

Completed in 131 milliseconds

123456789