Searched refs:S_IXOTH (Results 1 - 25 of 69) sorted by relevance

123

/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dstrmode.c131 switch (mode & (S_IXOTH | S_ISVTX)) {
135 case S_IXOTH:
141 case S_IXOTH | S_ISVTX:
/freebsd-10.0-release/lib/libc/string/
H A Dstrmode.c132 switch (mode & (S_IXOTH | S_ISVTX)) {
136 case S_IXOTH:
142 case S_IXOTH | S_ISVTX:
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dfilemode.c101 #ifndef S_IXOTH macro
102 #define S_IXOTH 0001
120 str[9] = (mode & S_IXOTH) != 0 ? 'x' : '-';
/freebsd-10.0-release/contrib/libreadline/
H A Dposixstat.h129 # define S_IXOTH (S_IEXEC >> 6) /* execute, other */ macro
134 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
140 #define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/freebsd-10.0-release/contrib/apr/file_io/unix/
H A Dfileacc.c66 mode |= S_IXOTH;
101 if (mode & S_IXOTH)
/freebsd-10.0-release/usr.bin/which/
H A Dwhich.c114 (fin.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0)) {
/freebsd-10.0-release/contrib/tcsh/
H A Dtc.os.h302 #ifndef S_IXOTH
303 # define S_IXOTH (S_IEXEC >> 6) macro
304 #endif /* S_IXOTH */
333 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
/freebsd-10.0-release/lib/libc/gen/
H A Dsetmode.c136 if (omode & (S_IFDIR|S_IXUSR|S_IXGRP|S_IXOTH))
271 permXbits = S_IXUSR|S_IXGRP|S_IXOTH;
274 perm |= S_IXUSR|S_IXGRP|S_IXOTH;
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dbfdio.c36 #ifndef S_IXOTH
37 #define S_IXOTH 0001 /* Execute by others. */ macro
H A Dopncls.c36 #ifndef S_IXOTH
37 #define S_IXOTH 0001 /* Execute by others. */ macro
681 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
734 & (buf.st_mode | ((S_IXUSR | S_IXGRP | S_IXOTH) &~ mask))));
/freebsd-10.0-release/contrib/smbfs/mount_smbfs/
H A Dmount_smbfs.c246 dir_mode |= S_IXOTH;
257 if (dir_mode & S_IXOTH)
/freebsd-10.0-release/sys/fs/cd9660/
H A Dcd9660_node.c149 inop->inode.iso_mode |= S_IXOTH;
166 inop->inode.iso_mode |= S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
/freebsd-10.0-release/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 &&
704 if (mode & S_IXOTH)
833 if ((seen & S_IXOTH) == 0) {
834 seen |= S_IXOTH;
836 mode |= S_IXOTH;
1164 if (mode & S_IXOTH)
H A Dsubr_acl_posix1e.c101 (S_IXUSR | S_IXGRP | S_IXOTH)) != 0 &&
400 if (mode & S_IXOTH)
471 mode |= S_IXOTH;
/freebsd-10.0-release/contrib/sendmail/libsmutil/
H A Dsafefile.c92 !bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode) &&
304 bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode))
620 if (bitset(S_IXOTH, stbuf.st_mode))
656 if (!bitset(S_IXOTH, stbuf.st_mode))
/freebsd-10.0-release/usr.bin/chpass/
H A Dfield.c256 if ((sbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) == 0) {
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dfs.c677 return st->m_sb.st_mode & S_IXOTH;
724 if (!ok && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) {
744 ((mode & atf_fs_access_x) && (st.st_mode & S_IXOTH));
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/common/acl/
H A Dacl_common.c423 if (mode & S_IXOTH) {
763 mode |= S_IXOTH;
1590 if (!(mode & S_IXUSR) && (mode & (S_IXGRP|S_IXOTH)))
1598 if (!(mode & S_IXGRP) && (mode & S_IXOTH))
1606 if ((mode & S_IXUSR) && (!(mode & S_IXGRP) && (mode & S_IXOTH)))
1634 if (mode & S_IXOTH)
/freebsd-10.0-release/bin/getfacl/
H A Dgetfacl.c168 if (sb.st_mode & S_IXOTH)
/freebsd-10.0-release/sys/sys/
H A Dstat.h220 #define S_IXOTH 0000001 /* X for other */ macro
/freebsd-10.0-release/usr.bin/env/
H A Denvopts.c74 (fin.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0)) {
/freebsd-10.0-release/usr.bin/iscsictl/
H A Dparse.y296 } else if (sb.st_mode & S_IXOTH) {
/freebsd-10.0-release/usr.bin/mkulzma/
H A Dmkulzma.c174 S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
/freebsd-10.0-release/usr.bin/mkuzip/
H A Dmkuzip.c158 S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
/freebsd-10.0-release/usr.sbin/lpr/chkprintcap/
H A Dchkprintcap.c276 | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)

Completed in 210 milliseconds

123