Searched refs:S_IXUSR (Results 1 - 25 of 142) sorted by relevance

123456

/macosx-10.9.5/mail_cmds-29/biff/
H A Dbiff.c85 sb.st_mode & S_IXUSR ? "y" :
87 return (sb.st_mode & (S_IXUSR | S_IXGRP) ? 0 : 1);
93 if (chmod(name, sb.st_mode & ~(S_IXUSR | S_IXGRP)) < 0)
97 if (chmod(name, (sb.st_mode & ~(S_IXUSR | S_IXGRP)) | S_IXUSR)
102 if (chmod(name, (sb.st_mode & ~(S_IXUSR | S_IXGRP)) | S_IXGRP)
109 return (sb.st_mode & (S_IXUSR | S_IXGRP) ? 0 : 1);
/macosx-10.9.5/groff-38/groff/src/include/
H A Dposix.h49 #ifndef S_IXUSR
50 #define S_IXUSR 0100 macro
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/_types/
H A D_s_ifmt.h52 #define S_IXUSR 0000100 /* [XSI] X for owner */ macro
72 #define S_IEXEC S_IXUSR /* backward compatability */
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dmodedata.c62 S_IXUSR, X_IXUSR,
H A Dstrperm.c113 if (!S_ISDIR(perm) && !(perm & (S_IXUSR|S_IXGRP|S_IXOTH)))
117 typ |= S_IXUSR|S_IXGRP|S_IXOTH;
190 perm |= who & (S_IXUSR|S_IXGRP);
196 perm |= who & S_IXUSR;
206 if ((typ |= perm) & (S_IXUSR|S_IXGRP|S_IXOTH))
209 perm |= who & S_IXUSR;
H A Dfmtperm.c55 if (perm & S_IXUSR)
/macosx-10.9.5/emacs-92/emacs/mac/inc/sys/
H A Dstat.h44 #undef S_IXUSR macro
67 #define S_IXUSR S_IEXEC macro
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsys_stat_.h230 #if !S_IXUSR && S_IEXEC
231 # define S_IXUSR S_IEXEC macro
233 #if !S_IXUSR
234 # define S_IXUSR 00100 macro
237 # define S_IXGRP (S_IXUSR >> 3)
240 # define S_IXOTH (S_IXUSR >> 6)
244 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
255 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
H A Dmodechange.c60 && S_IRUSR == RUSR && S_IWUSR == WUSR && S_IXUSR == XUSR
69 | (octal & XUSR ? S_IXUSR : 0)
240 value |= S_IXUSR | S_IXGRP | S_IXOTH;
341 | (value & (S_IXUSR | S_IXGRP | S_IXOTH)
342 ? S_IXUSR | S_IXGRP | S_IXOTH : 0));
348 if ((newmode & (S_IXUSR | S_IXGRP | S_IXOTH)) | dir)
349 value |= S_IXUSR | S_IXGRP | S_IXOTH;
/macosx-10.9.5/text_cmds-87/sort/
H A Dstat-macros.h219 # if !S_IXUSR && S_IEXEC
220 # define S_IXUSR S_IEXEC macro
222 # if !S_IXUSR
223 # define S_IXUSR 00100 macro
226 # define S_IXGRP (S_IXUSR >> 3)
229 # define S_IXOTH (S_IXUSR >> 6)
233 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
244 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/macosx-10.9.5/Libc-997.90.3/string/FreeBSD/
H A Dstrmode.c86 switch (mode & (S_IXUSR | S_ISUID)) {
90 case S_IXUSR:
96 case S_IXUSR | S_ISUID:
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dstrmode.c85 switch (mode & (S_IXUSR | S_ISUID)) {
89 case S_IXUSR:
95 case S_IXUSR | S_ISUID:
/macosx-10.9.5/xar-202/xar/lib/
H A Dstrmode.h86 switch (mode & (S_IXUSR | S_ISUID)) {
90 case S_IXUSR:
96 case S_IXUSR | S_ISUID:
/macosx-10.9.5/bash-92/bash-3.2/include/
H A Dposixstat.h121 # define S_IXUSR S_IEXEC /* execute, owner */ macro
132 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
140 #define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dposixstat.h121 # define S_IXUSR S_IEXEC /* execute, owner */ macro
132 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
140 #define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c74 #ifndef S_IXUSR macro
75 #define S_IXUSR 0100
113 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
/macosx-10.9.5/emacs-92/emacs/src/
H A Dfilemode.c44 #if !S_IXUSR
46 # define S_IXUSR S_IEXEC
48 # define S_IXUSR 00100
217 chars[2] = (bits & S_IXUSR) ? 'x' : '-';
45 # define S_IXUSR macro
47 # define S_IXUSR macro
/macosx-10.9.5/rsync-42/rsync/lib/
H A Dpermstring.c44 perms[3] = (mode & S_IXUSR) ? 's' : 'S';
/macosx-10.9.5/Libc-997.90.3/util/
H A Dmkpath_np.c149 if ((dirstat.st_mode & (S_IWUSR | S_IXUSR)) != (S_IWUSR | S_IXUSR)) {
150 chmod_mode = dirstat.st_mode | S_IWUSR | S_IXUSR;
/macosx-10.9.5/BerkeleyDB-21/db/build_brew/
H A Dclib_port.h102 #ifndef S_IXUSR
103 #define S_IXUSR 0 /* X for owner */ macro
130 #ifndef S_IXUSR
131 #define S_IXUSR 0000100 /* X for owner */ macro
/macosx-10.9.5/BerkeleyDB-21/db/build_s60/
H A Dclib_port.h102 #ifndef S_IXUSR
103 #define S_IXUSR 0 /* X for owner */ macro
130 #ifndef S_IXUSR
131 #define S_IXUSR 0000100 /* X for owner */ macro
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/
H A Dclib_port.h104 #ifndef S_IXUSR
105 #define S_IXUSR 0 /* X for owner */ macro
132 #ifndef S_IXUSR
133 #define S_IXUSR 0000100 /* X for owner */ macro
/macosx-10.9.5/BerkeleyDB-21/db/build_wince/
H A Dclib_port.h104 #ifndef S_IXUSR
105 #define S_IXUSR 0 /* X for owner */ macro
132 #ifndef S_IXUSR
133 #define S_IXUSR 0000100 /* X for owner */ macro
/macosx-10.9.5/BerkeleyDB-21/db/build_windows/
H A Dclib_port.h104 #ifndef S_IXUSR
105 #define S_IXUSR 0 /* X for owner */ macro
132 #ifndef S_IXUSR
133 #define S_IXUSR 0000100 /* X for owner */ macro
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Deaccess.c76 if (!S_ISREG(st.st_mode) || !(flags & X_OK) || (st.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)))
87 mode |= S_IXUSR;

Completed in 439 milliseconds

123456