Searched refs:S_IXGRP (Results 1 - 25 of 80) sorted by relevance

1234

/freebsd-11-stable/usr.bin/biff/
H A Dbiff.c82 sb.st_mode & S_IXGRP ? "b" : "n");
83 return (sb.st_mode & (S_IXUSR | S_IXGRP) ? 0 : 1);
89 if (chmod(name, sb.st_mode & ~(S_IXUSR | S_IXGRP)) < 0)
93 if (chmod(name, (sb.st_mode & ~(S_IXUSR | S_IXGRP)) | S_IXUSR)
98 if (chmod(name, (sb.st_mode & ~(S_IXUSR | S_IXGRP)) | S_IXGRP)
105 return (sb.st_mode & (S_IXUSR | S_IXGRP) ? 0 : 1);
/freebsd-11-stable/lib/libc/string/
H A Dstrmode.c109 switch (mode & (S_IXGRP | S_ISGID)) {
113 case S_IXGRP:
119 case S_IXGRP | S_ISGID:
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrmode.c108 switch (mode & (S_IXGRP | S_ISGID)) {
112 case S_IXGRP:
118 case S_IXGRP | S_ISGID:
/freebsd-11-stable/contrib/binutils/binutils/
H A Dfilemode.c88 #ifndef S_IXGRP macro
89 #define S_IXGRP 0010
117 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-';
/freebsd-11-stable/contrib/libreadline/
H A Dposixstat.h125 # define S_IXGRP (S_IEXEC >> 3) /* execute, group */ macro
133 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
140 #define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dfileacc.c55 mode |= S_IXGRP;
90 if (mode & S_IXGRP)
/freebsd-11-stable/contrib/elftoolchain/ar/
H A Dutil.c145 c = (m & S_IXGRP) ? 's' : 'S';
147 c = (m & S_IXGRP) ? 'x' : '-';
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dfsaccess.c85 SET_AND_CLEAR(S_IXUSR, S_IXGRP, S_IXOTH);
/freebsd-11-stable/libexec/comsat/
H A Dcomsat.c175 if (stat(tty, &stb) == -1 || !(stb.st_mode & (S_IXUSR | S_IXGRP))) {
195 switch (stb.st_mode & (S_IXUSR | S_IXGRP)) {
197 case (S_IXUSR | S_IXGRP):
205 case S_IXGRP:
/freebsd-11-stable/usr.bin/which/
H A Dwhich.c115 (fin.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0)) {
/freebsd-11-stable/sys/kern/
H A Dsubr_acl_nfs4.c241 (file_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0)
270 (S_IXUSR | S_IXGRP | S_IXOTH)) != 0 &&
691 if (mode & S_IXGRP)
782 ((seen & S_IXGRP) == 0)) {
783 seen |= S_IXGRP;
785 mode |= S_IXGRP;
828 if ((seen & S_IXGRP) == 0) {
829 seen |= S_IXGRP;
831 mode |= S_IXGRP;
1122 if ((mode & S_IXGRP)
[all...]
H A Dsubr_acl_posix1e.c101 (S_IXUSR | S_IXGRP | S_IXOTH)) != 0 &&
391 if (mode & S_IXGRP)
465 mode |= S_IXGRP;
/freebsd-11-stable/lib/libc/gen/
H A Dsetmode.c141 if (omode & (S_IFDIR|S_IXUSR|S_IXGRP|S_IXOTH))
276 permXbits = S_IXUSR|S_IXGRP|S_IXOTH;
279 perm |= S_IXUSR|S_IXGRP|S_IXOTH;
/freebsd-11-stable/contrib/tcsh/
H A Dtc.os.h304 #ifndef S_IXGRP
305 # define S_IXGRP (S_IEXEC >> 3) macro
306 #endif /* S_IXGRP */
329 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_umask.c52 S_IXGRP,
H A Dt_msgget.c255 S_IWGRP, S_IXGRP, S_IRWXO, S_IROTH, S_IWOTH, S_IXOTH
/freebsd-11-stable/contrib/binutils/bfd/
H A Dbfdio.c33 #ifndef S_IXGRP
34 #define S_IXGRP 0010 /* Execute by group. */ macro
H A Dopncls.c33 #ifndef S_IXGRP
34 #define S_IXGRP 0010 /* Execute by group. */ macro
681 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
734 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
/freebsd-11-stable/contrib/smbfs/mount_smbfs/
H A Dmount_smbfs.c251 dir_mode |= S_IXGRP;
262 if (dir_mode & S_IXGRP)
/freebsd-11-stable/sys/fs/cd9660/
H A Dcd9660_node.c153 inop->inode.iso_mode |= S_IXGRP;
166 inop->inode.iso_mode |= S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
/freebsd-11-stable/usr.bin/chpass/
H A Dfield.c256 if ((sbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) == 0) {
/freebsd-11-stable/contrib/mdocml/
H A Dcatman.c181 S_IXGRP | S_IROTH | S_IXOTH) == -1 &&
/freebsd-11-stable/contrib/sendmail/libsmutil/
H A Dsafefile.c91 !bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode) &&
303 bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode))
638 bitset(S_IXGRP, stbuf.st_mode))
651 bitset(S_IXGRP, stbuf.st_mode))
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dfs.c655 return st->m_sb.st_mode & S_IXGRP;
720 if (!ok && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) {
734 ((mode & atf_fs_access_x) && (st.st_mode & S_IXGRP));
/freebsd-11-stable/bin/getfacl/
H A Dgetfacl.c144 if (sb.st_mode & S_IXGRP)

Completed in 190 milliseconds

1234