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

1234567

/freebsd-11-stable/contrib/groff/src/include/
H A Dposix.h45 #ifndef S_IWUSR
46 #define S_IWUSR 0200 macro
/freebsd-11-stable/contrib/binutils/binutils/
H A Dfilemode.c72 #ifndef S_IWUSR macro
73 #define S_IWUSR 0200
113 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
/freebsd-11-stable/contrib/libreadline/
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)
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_mkdtemp.c50 if (mkdir(path, S_IRUSR | S_IWUSR | S_IXUSR) == 0)
/freebsd-11-stable/contrib/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);
/freebsd-11-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dstat.h34 #define S_IWUSR _S_IWRITE /* Owner write permission */ macro
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dfileacc.c44 mode |= S_IWUSR;
79 if (mode & S_IWUSR)
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dmktemp.c82 fd = open(path, O_CREAT|O_EXCL|O_RDWR, S_IRUSR|S_IWUSR);
87 if (mkdir(path, S_IRUSR|S_IWUSR|S_IXUSR) == 0)
H A Dstrmode.c81 if (mode & S_IWUSR)
/freebsd-11-stable/usr.bin/nohup/
H A Dnohup.c106 * the mode_t is set to S_IRUSR | S_IWUSR.
109 fd = open(p, O_RDWR | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR);
116 S_IRUSR | S_IWUSR);
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dacl.c111 mask |= S_IWUSR|S_IWGRP|S_IWOTH;
125 mask |= S_IWUSR;
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dfsaccess.c80 SET_AND_CLEAR(S_IWUSR, S_IWGRP, S_IWOTH);
/freebsd-11-stable/lib/libc/string/
H A Dstrmode.c82 if (mode & S_IWUSR)
/freebsd-11-stable/libexec/ypxfr/
H A Dyp_dbwrite.c49 #define PERM_SECURE (S_IRUSR|S_IWUSR)
H A Dypxfrd_getmap.c100 #define PERM_SECURE (S_IRUSR|S_IWUSR)
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Dconf.h280 # define S_IWUSR S_IWRITE macro
282 # define S_IWUSR (S_IRUSR/2) macro
288 # define S_IWGRP (S_IWUSR / 0010)
290 # define S_IWOTH (S_IWUSR / 0100)
/freebsd-11-stable/usr.bin/mkfifo/
H A Dmkfifo.c54 #define BASEMODE S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | \
/freebsd-11-stable/usr.sbin/lpr/common_source/
H A Dlp.h216 #define LOCK_FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)
221 #define STAT_FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)
222 #define LOG_FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)
223 #define TEMP_FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_mkexrc.c69 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)) < 0) {
/freebsd-11-stable/sys/sys/
H A Dstat.h203 #define S_IWUSR 0000200 /* W for owner */ macro
208 #define S_IWRITE S_IWUSR
255 #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
/freebsd-11-stable/contrib/sendmail/src/
H A Dcontrol.c80 sff, S_IRUSR|S_IWUSR, NULL);
140 if (chmod(ControlSocketName, S_IRUSR|S_IWUSR) < 0)
189 RunAsUserName, sff, S_IRUSR|S_IWUSR, NULL);
/freebsd-11-stable/contrib/tcsh/
H A Dtc.os.h294 #ifndef S_IWUSR
295 # define S_IWUSR S_IWRITE macro
296 #endif /* S_IWUSR */
326 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_disk_secure.c44 defined(S_IRUSR) && defined(S_IWUSR) && defined(S_IXUSR)
259 defined(S_IRUSR) && defined(S_IWUSR) && defined(S_IXUSR)
263 S_IRUSR | S_IWUSR | S_IXUSR) != 0) {
/freebsd-11-stable/contrib/elftoolchain/ar/
H A Dutil.c134 buf[2] = m & S_IWUSR ? 'w' : '-';
/freebsd-11-stable/bin/mkdir/
H A Dmkdir.c173 numask = oumask & ~(S_IWUSR | S_IXUSR);

Completed in 361 milliseconds

1234567