Home
last modified time | relevance | path

Searched refs:S_IWUSR (Results 1 – 18 of 18) sorted by relevance

/reactos/sdk/tools/mkisofs/schilytools/include/schily/
H A Dstat.h233 #ifdef S_IWUSR
234 #define S_IWRITE S_IWUSR /* Use POSIX name */
250 #ifndef S_IWUSR /* Write permission, owner */
251 #define S_IWUSR S_IWRITE /* Needed on old UNIX systems */ macro
276 #define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
/reactos/dll/shellext/shellbtrfs/
H A Dpropsheet.h32 #ifndef S_IWUSR
33 #define S_IWUSR 0000200 macro
45 #define S_IWGRP (S_IWUSR >> 3)
H A Dpropsheet.cpp939 …static ULONG perms[] = { S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S… in init_propsheet()
1142 … bps->change_perm_flag(hwndDlg, S_IWUSR, IsDlgButtonChecked(hwndDlg, LOWORD(wParam))); in PropSheetDlgProc()
/reactos/sdk/lib/3rdparty/stlport/src/details/
H A Dfstream_stdio.cpp58 # define S_IWUSR _S_IWRITE macro
95 # define S_IWRITE S_IWUSR
266 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP | in _M_open()
H A Dfstream_unistd.cpp220 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP | in _M_open()
/reactos/modules/rostests/winetests/winetest/
H A Dport.h148 #ifndef S_IWUSR
149 # define S_IWUSR 0 macro
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/
H A Ddisk.c640 if (!(filestat.st_mode & S_IWUSR)) in disk_query_information()
775 mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH); in disk_set_information()
777 mode |= S_IWUSR; in disk_set_information()
1168 if (!(fstat.st_mode & S_IWUSR)) in disk_query_directory()
H A Drdesktop.c1512 fd = open(fn, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR); in rd_open_file()
/reactos/drivers/filesystems/ext2/inc/
H A Dext2fs.h385 #define S_IWUSR 0x080 /* 0 0200 */ macro
403 #define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH)
408 #define S_ISWRITABLE(m) (((m) & S_IPERMISSION_MASK) == (S_IWUSR | S_IWGRP | S_IWOTH))
411 #define Ext2SetWritable(m) do {(m) = (m) | (S_IWUSR | S_IWGRP | S_IWOTH);} while(0)
413 #define Ext2SetOwnerWritable(m) do {(m) |= S_IWUSR;} while(0)
414 #define Ext2SetOwnerReadOnly(m) do {(m) &= ~S_IWUSR;} while(0)
416 #define Ext2IsOwnerWritable(m) (((m) & S_IWUSR) == S_IWUSR)
428 #define Ext2SetReadOnly(m) do {(m) &= ~(S_IWUSR | S_IWGRP | S_IWOTH);} while(0)
/reactos/sdk/include/crt/sys/
H A Dstat.h327 #define S_IWUSR _S_IWUSR macro
/reactos/sdk/lib/3rdparty/libmpg123/compat/
H A Dcompat.c205 ret = open(filename, flags, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH); in compat_open()
/reactos/drivers/filesystems/btrfs/
H A Dbtrfs_drv.h1771 #ifndef S_IWUSR
1772 #define S_IWUSR 0000200 macro
1789 #define S_IWGRP (S_IWUSR >> 3)
H A Dfsctl.c389 …r->root_item.inode.st_mode = __S_IFDIR | S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH… in do_create_snapshot()
938 …r->root_item.inode.st_mode = __S_IFDIR | S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH… in create_subvol()
1389 …uint32_t allowed = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP | S_IROTH | S_IWOTH |… in set_inode_info()
H A Dfree-space.c1142 c->cache->inode_item.st_mode = S_IRUSR | S_IWUSR | __S_IFREG; in allocate_cache_chunk()
H A Dcreate.c2052 …uint32_t allowed = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP | S_IROTH | S_IWOTH |… in file_create_parse_ea()
H A Dfileinfo.c5936 …uint32_t allowed = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP | S_IROTH | S_IWOTH |…
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/uiports/
H A Dqtwin.cpp1649 fd = open(fn, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR); in rd_open_file()
/reactos/drivers/network/tcpip/lwip/src/netif/ppp/
H A Deap.c1231 fd = open(path, modebits, S_IRUSR | S_IWUSR);