Home
last modified time | relevance | path

Searched refs:_S_IWRITE (Results 1 – 14 of 14) sorted by relevance

/third_party/mingw-w64/mingw-w64-headers/crt/sys/
Dstat.h66 #define _S_IWRITE 0x0080 macro
140 #define S_IWRITE _S_IWRITE
145 #define _S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
147 #define _S_IWUSR _S_IWRITE
/third_party/mingw-w64/mingw-w64-crt/misc/
Dmkstemp.c52 _SH_DENYRW, _S_IREAD | _S_IWRITE); in mkstemp()
/third_party/giflib/
Dgifinto.c64 _S_IREAD | _S_IWRITE); in mkstemp()
/third_party/glib/glib/
Dgiowin32.c1686 pmode = _S_IWRITE; in g_io_channel_new_file()
1690 pmode = _S_IWRITE; in g_io_channel_new_file()
1694 pmode = _S_IREAD | _S_IWRITE; in g_io_channel_new_file()
1698 pmode = _S_IREAD | _S_IWRITE; in g_io_channel_new_file()
1702 pmode = _S_IREAD | _S_IWRITE; in g_io_channel_new_file()
Dgstdio.c197 # define _S_IWUSR _S_IWRITE
/third_party/node/src/
Dutil.cc40 #define S_IWUSR _S_IWRITE
/third_party/mingw-w64/mingw-w64-crt/stdio/
Dftruncate64.c316 f = _open("XXX.tmp", _O_BINARY|_O_CREAT|_O_RDWR, _S_IREAD | _S_IWRITE); in main()
/third_party/libuv/test/
Dtask.h73 # define S_IWUSR _S_IWRITE
/third_party/ninja/src/
Dutil.cc619 _S_IREAD | _S_IWRITE); in Truncate()
/third_party/libuv/src/win/
Dfs.c540 if (!((req->fs.info.mode & ~current_umask) & _S_IWRITE)) { in fs__open()
1797 statbuf->st_mode |= (_S_IREAD | _S_IWRITE) | ((_S_IREAD | _S_IWRITE) >> 3) | in fs__stat_handle()
1798 ((_S_IREAD | _S_IWRITE) >> 6); in fs__stat_handle()
2230 if (req->fs.info.mode & _S_IWRITE) { in fs__fchmod()
/third_party/googletest/googletest/src/
Dgtest-port.cc1006 const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); in CapturedStream()
/third_party/boringssl/src/third_party/googletest/src/
Dgtest-port.cc1087 const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); in CapturedStream()
/third_party/cares/test/gmock-1.8.0/
Dgmock-gtest-all.cc9497 const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); in CapturedStream()
/third_party/python/Modules/
Dposixmodule.c3182 if (mode & _S_IWRITE) in os_chmod_impl()