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

123456

/freebsd-10.0-release/contrib/groff/src/include/
H A Dposix.h45 #ifndef S_IWUSR
46 #define S_IWUSR 0200 macro
/freebsd-10.0-release/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-10.0-release/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-10.0-release/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-10.0-release/contrib/apr/file_io/unix/
H A Dfileacc.c44 mode |= S_IWUSR;
79 if (mode & S_IWUSR)
/freebsd-10.0-release/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-10.0-release/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-10.0-release/crypto/heimdal/kcm/
H A Dacl.c111 mask |= S_IWUSR|S_IWGRP|S_IWOTH;
125 mask |= S_IWUSR;
/freebsd-10.0-release/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-10.0-release/lib/libc/string/
H A Dstrmode.c82 if (mode & S_IWUSR)
/freebsd-10.0-release/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-10.0-release/usr.bin/mkfifo/
H A Dmkfifo.c54 #define BASEMODE S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | \
/freebsd-10.0-release/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-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DConnectionSharedMemory.cpp120 m_fd = ::shm_open (m_name.c_str(), oflag, S_IRUSR|S_IWUSR);
/freebsd-10.0-release/contrib/nvi/ex/
H A Dex_mkexrc.c69 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)) < 0) {
/freebsd-10.0-release/usr.bin/truncate/
H A Dtruncate.c111 omode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
/freebsd-10.0-release/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-10.0-release/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-10.0-release/contrib/tcsh/
H A Dtc.os.h295 #ifndef S_IWUSR
296 # define S_IWUSR S_IWRITE macro
297 #endif /* S_IWUSR */
327 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
/freebsd-10.0-release/bin/mkdir/
H A Dmkdir.c173 numask = oumask & ~(S_IWUSR | S_IXUSR);
/freebsd-10.0-release/contrib/diff/src/
H A Dsystem.h118 #ifndef S_IWUSR
119 # define S_IWUSR 0200 macro
/freebsd-10.0-release/crypto/openssh/
H A Dsshpty.c214 mode = S_IRUSR | S_IWUSR | S_IWGRP;
217 mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH;
/freebsd-10.0-release/lib/libc/db/recno/
H A Drec_open.c84 O_RDWR, S_IRUSR | S_IWUSR, &btopeninfo, dflags);
86 dbp = __bt_open(NULL, O_RDWR, S_IRUSR | S_IWUSR, NULL, dflags);

Completed in 223 milliseconds

123456