Searched refs:S_IWUSR (Results 1 - 25 of 226) sorted by relevance

12345678910

/macosx-10.10.1/groff-38/groff/src/include/
H A Dposix.h45 #ifndef S_IWUSR
46 #define S_IWUSR 0200 macro
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/_types/
H A D_s_ifmt.h51 #define S_IWUSR 0000200 /* [XSI] W for owner */ macro
71 #define S_IWRITE S_IWUSR /* backward compatability */
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dmodedata.c61 S_IWUSR, X_IWUSR,
H A Dstrperm.c110 typ |= S_IWUSR|S_IWGRP|S_IWOTH;
192 perm |= who & (S_IWUSR|S_IWGRP);
198 perm |= who & S_IWUSR;
H A Dfmtperm.c53 if (perm & S_IWUSR)
/macosx-10.10.1/emacs-93/emacs/mac/inc/sys/
H A Dstat.h43 #undef S_IWUSR macro
66 #define S_IWUSR S_IWRITE macro
/macosx-10.10.1/BerkeleyDB-21/db/dbinc/
H A Dos.h83 #define DB_MODE_600 (S_IRUSR|S_IWUSR)
84 #define DB_MODE_660 (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
85 #define DB_MODE_666 (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
86 #define DB_MODE_700 (S_IRUSR|S_IWUSR|S_IXUSR)
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dchmod.c24 imode |= S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dsys_stat_.h217 #if !S_IWUSR && S_IWRITE
218 # define S_IWUSR S_IWRITE macro
220 #if !S_IWUSR
221 # define S_IWUSR 00200 macro
224 # define S_IWGRP (S_IWUSR >> 3)
227 # define S_IWOTH (S_IWUSR >> 6)
244 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
/macosx-10.10.1/text_cmds-88/sort/
H A Dstat-macros.h206 # if !S_IWUSR && S_IWRITE
207 # define S_IWUSR S_IWRITE macro
209 # if !S_IWUSR
210 # define S_IWUSR 00200 macro
213 # define S_IWGRP (S_IWUSR >> 3)
216 # define S_IWOTH (S_IWUSR >> 6)
233 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
H A Dposixstat.h120 # define S_IWUSR S_IWRITE /* write, owner */ macro
132 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
139 #define S_IWUGO (S_IWUSR | S_IWGRP | S_IWOTH)
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dposixstat.h120 # define S_IWUSR S_IWRITE /* write, owner */ macro
132 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
139 #define S_IWUGO (S_IWUSR | S_IWGRP | S_IWOTH)
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c71 #ifndef S_IWUSR macro
72 #define S_IWUSR 0200
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/include/isc/
H A Dstat.h33 #define S_IWUSR _S_IWRITE /* Owner write permission */ macro
/macosx-10.10.1/emacs-93/emacs/src/
H A Dfilemode.c36 #if !S_IWUSR
38 # define S_IWUSR S_IWRITE
40 # define S_IWUSR 00200
216 chars[1] = (bits & S_IWUSR) ? 'w' : '-';
37 # define S_IWUSR macro
39 # define S_IWUSR macro
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dtmpname.cpp105 int fd = dir ? mkdir(tmpl, S_IRUSR | S_IWUSR | S_IXUSR)
106 : open(tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dsymlink.c48 if ((fd = open(b, O_CREAT|O_TRUNC|O_WRONLY|O_cloexec, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)) < 0)
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dtempname.c80 #if !S_IWUSR && S_IWRITE
81 # define S_IWUSR S_IWRITE macro
83 #if !S_IWUSR
84 # define S_IWUSR 00200 macro
297 fd = __open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
301 fd = __open64 (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
305 fd = __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
/macosx-10.10.1/Libc-1044.1.2/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.10.1/BerkeleyDB-21/db/build_brew/
H A Dclib_port.h99 #ifndef S_IWUSR
100 #define S_IWUSR S_IWRITE /* W for owner */ macro
127 #ifndef S_IWUSR
128 #define S_IWUSR 0000200 /* W for owner */ macro
/macosx-10.10.1/BerkeleyDB-21/db/build_s60/
H A Dclib_port.h99 #ifndef S_IWUSR
100 #define S_IWUSR S_IWRITE /* W for owner */ macro
127 #ifndef S_IWUSR
128 #define S_IWUSR 0000200 /* W for owner */ macro
/macosx-10.10.1/BerkeleyDB-21/db/build_vxworks/
H A Dclib_port.h101 #ifndef S_IWUSR
102 #define S_IWUSR S_IWRITE /* W for owner */ macro
129 #ifndef S_IWUSR
130 #define S_IWUSR 0000200 /* W for owner */ macro
/macosx-10.10.1/BerkeleyDB-21/db/build_wince/
H A Dclib_port.h101 #ifndef S_IWUSR
102 #define S_IWUSR S_IWRITE /* W for owner */ macro
129 #ifndef S_IWUSR
130 #define S_IWUSR 0000200 /* W for owner */ macro
/macosx-10.10.1/BerkeleyDB-21/db/build_windows/
H A Dclib_port.h101 #ifndef S_IWUSR
102 #define S_IWUSR S_IWRITE /* W for owner */ macro
129 #ifndef S_IWUSR
130 #define S_IWUSR 0000200 /* W for owner */ macro
/macosx-10.10.1/ntp-92/lib/isc/win32/include/isc/
H A Dstat.h34 #define S_IWUSR _S_IWRITE /* Owner write permission */ macro

Completed in 295 milliseconds

12345678910