HomeSort by: relevance | last modified time | path
    Searched defs:S_IWUSR (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl2/groff/dist/src/include/
posix.h 47 #ifndef S_IWUSR
48 #define S_IWUSR 0200
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
tmpdir.c 49 #if !S_IWUSR && S_IWRITE
50 # define S_IWUSR S_IWRITE
52 #if !S_IWUSR
53 # define S_IWUSR 00200
mkdtemp.c 62 #if !S_IWUSR && S_IWRITE
63 # define S_IWUSR S_IWRITE
65 #if !S_IWUSR
66 # define S_IWUSR 00200
180 fd = __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/
stat.h 36 #define S_IWUSR _S_IWRITE /* Owner write permission */
  /src/external/gpl3/binutils/dist/binutils/
filemode.c 71 #ifndef S_IWUSR
72 #define S_IWUSR 0200
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
  /src/external/gpl3/binutils.old/dist/binutils/
filemode.c 71 #ifndef S_IWUSR
72 #define S_IWUSR 0200
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
  /src/external/gpl2/xcvs/dist/lib/
stat-macros.h 206 # if !S_IWUSR && S_IWRITE
207 # define S_IWUSR S_IWRITE
209 # if !S_IWUSR
210 # define S_IWUSR 00200
213 # define S_IWGRP (S_IWUSR >> 3)
216 # define S_IWOTH (S_IWUSR >> 6)
233 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
  /src/external/gpl3/gdb/dist/readline/readline/
posixstat.h 120 # define S_IWUSR S_IWRITE /* write, owner */
132 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
159 #define S_IWUGO (S_IWUSR | S_IWGRP | S_IWOTH)
  /src/external/gpl3/gdb.old/dist/readline/readline/
posixstat.h 120 # define S_IWUSR S_IWRITE /* write, owner */
132 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
159 #define S_IWUGO (S_IWUSR | S_IWGRP | S_IWOTH)
  /src/external/gpl2/diffutils/dist/lib/
tempname.c 82 #if !S_IWUSR && S_IWRITE
83 # define S_IWUSR S_IWRITE
85 #if !S_IWUSR
86 # define S_IWUSR 00200
299 fd = __open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
303 fd = __open64 (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
307 fd = __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
  /src/external/gpl2/gettext/dist/gettext-tools/src/
write-csharp.c 43 #if !S_IWUSR && S_IWRITE
44 # define S_IWUSR S_IWRITE
46 #if !S_IWUSR
47 # define S_IWUSR 00200
59 # define S_IWGRP (S_IWUSR >> 3)
68 # define S_IWOTH (S_IWUSR >> 6)
681 if (mkdir (output_dir, S_IRUSR | S_IWUSR | S_IXUSR
write-java.c 44 #if !S_IWUSR && S_IWRITE
45 # define S_IWUSR S_IWRITE
47 #if !S_IWUSR
48 # define S_IWUSR 00200
994 if (mkdir (subdirs[i], S_IRUSR | S_IWUSR | S_IXUSR) < 0)
  /src/external/gpl2/texinfo/dist/lib/
tempname.c 84 #if !S_IWUSR && S_IWRITE
85 # define S_IWUSR S_IWRITE
87 #if !S_IWUSR
88 # define S_IWUSR 00200
301 fd = __open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
305 fd = __open64 (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
309 fd = __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
  /src/external/mit/libuv/dist/test/
test-metrics.c 220 UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IRUSR | S_IWUSR,
333 S_IRUSR | S_IWUSR,
task.h 71 # ifndef S_IWUSR
72 # define S_IWUSR _S_IWRITE
  /src/external/gpl2/diffutils/dist/src/
system.h 150 #ifndef S_IWUSR
151 # define S_IWUSR 0200
  /src/external/public-domain/xz/dist/src/xz/
file_io.c 43 # define S_IWUSR _S_IWRITE
972 const mode_t mode = S_IRUSR | S_IWUSR;
  /src/sys/sys/
stat.h 119 #define S_IWUSR 0000200 /* W for owner */
124 #define S_IWRITE S_IWUSR
193 #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
  /src/usr.sbin/pwd_mkdb/
pwd_mkdb.c 129 #define PERM_INSECURE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
130 #define PERM_SECURE (S_IRUSR | S_IWUSR)
567 (void)fchmod(fileno(fp), S_IRUSR|S_IWUSR);
  /src/external/bsd/libarchive/dist/libarchive/
archive_windows.h 216 #define S_IWUSR _S_IWUSR
  /src/external/bsd/am-utils/dist/include/
am_defs.h 1315 # undef S_IWUSR
  /src/external/gpl2/rcs/include/
conf.h 284 # define S_IWUSR S_IWRITE
286 # define S_IWUSR (S_IRUSR/2)
292 # define S_IWGRP (S_IWUSR / 0010)
294 # define S_IWOTH (S_IWUSR / 0100)
  /src/external/ibm-public/postfix/dist/src/util/
sys_defs.h 1567 #define S_IWUSR _S_IWUSR
1573 #define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
  /src/lib/libc/time/
zic.c 100 # define S_IWUSR 0200
108 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
949 | (((omode & (S_IWUSR | S_IWGRP | S_IWOTH))
950 == (S_IWUSR | S_IWGRP | S_IWOTH))
951 ? S_IWUSR | S_IWGRP | S_IWOTH : 0));

Completed in 36 milliseconds