Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/stlport/src/details/
H A Dfstream_stdio.cpp53 # define S_IWRITE _S_IWRITE
58 # define S_IWUSR _S_IWRITE
62 # define S_IWGRP _S_IWRITE
66 # define S_IWOTH _S_IWRITE
97 # define _S_IWRITE S_IWRITE macro
/reactos/sdk/lib/crt/stdio/
H A Dstat64.c10 #define ALL_S_IWRITE (_S_IWRITE | (_S_IWRITE >> 3) | (_S_IWRITE >> 6))
H A Dfile.c770 DWORD newFlags = (flags & _S_IWRITE)? oldFlags & ~FILE_ATTRIBUTE_READONLY: in _chmod()
789 DWORD newFlags = (flags & _S_IWRITE)? oldFlags & ~FILE_ATTRIBUTE_READONLY: in _wchmod()
1802 if(pmode & ~(_S_IREAD | _S_IWRITE)) in _wsopen_s()
3199 fd = _wsopen(path, open_flags, share, _S_IREAD | _S_IWRITE); in _wfsopen()
3438 fd = _wopen(path, open_flags, _S_IREAD | _S_IWRITE); in _wfreopen()
3922 _S_IREAD | _S_IWRITE); in tmpfile()
/reactos/sdk/include/crt/sys/
H A Dstat.h139 #define _S_IWRITE 0x0080 macro
316 #define S_IWRITE _S_IWRITE
321 #define _S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
323 #define _S_IWUSR _S_IWRITE
/reactos/modules/rostests/winetests/msvcrt/
H A Dfile.c119 fd = open ("fdopen.tst", O_WRONLY | O_CREAT | O_BINARY, _S_IREAD |_S_IWRITE); in test_fdopen()
143 fd = open ("fdopen.tst", O_WRONLY | O_CREAT | O_BINARY, _S_IREAD |_S_IWRITE); in test_fileops()
1146 _S_IREAD | _S_IWRITE); in test_file_write_read()
1166 _S_IREAD | _S_IWRITE); in test_file_write_read()
1225 tempfd = _open(tempf, _O_CREAT|_O_TRUNC|_O_BINARY|_O_RDWR, _S_IWRITE); in test_file_write_read()
1350 ret =_chmod (tempf, _S_IREAD | _S_IWRITE); in test_file_write_read()
1684 fd = _open( tempfile, _O_CREAT|_O_TRUNC|_O_RDWR, _S_IREAD|_S_IWRITE ); in test_chsize()
1940 fd = _open(name, _O_CREAT|_O_WRONLY, _S_IWRITE); in test_setmode()
1992 fd = _sopen(fname, _O_CREAT|_O_RDWR, _SH_DENYRW, _S_IREAD | _S_IWRITE); in test_get_osfhandle()
2324 fd = open("stdin.tst", O_WRONLY | O_CREAT, _S_IREAD |_S_IWRITE); in test_stdin()
[all …]
H A Dheaders.c363 CHECK_DEF(_S_IWRITE); in test_defines()
/reactos/drivers/bus/acpi/acpica/include/platform/
H A Dacwin64.h95 #define S_IWRITE _S_IWRITE
H A Dacwin.h114 #define S_IWRITE _S_IWRITE
/reactos/sdk/lib/3rdparty/libmpg123/compat/
H A Dcompat.c193 ret = _wopen(frag, flags|_O_BINARY, _S_IREAD | _S_IWRITE); in compat_open()
203 ret = _open(filename, flags|_O_BINARY, _S_IREAD | _S_IWRITE); in compat_open()
/reactos/dll/win32/setupapi/
H A Dsetupapi_private.h296 #define _S_IWRITE 0x0080 macro
H A Dsetupcab.c300 … return sc_cb_open(fici.FullTargetName, _O_BINARY | _O_CREAT | _O_WRONLY, _S_IREAD | _S_IWRITE); in sc_FNNOTIFY_A()
441 return sc_cb_open(charbuf, _O_BINARY | _O_CREAT | _O_WRONLY, _S_IREAD | _S_IWRITE); in sc_FNNOTIFY_W()
/reactos/dll/win32/cabinet/
H A Dcabinet.h33 #define _S_IWRITE 0x0080 macro
H A Dfci.c243 _S_IREAD | _S_IWRITE, &err, fci->pv )) == -1) in create_temp_file()
719 _S_IREAD | _S_IWRITE, &err, fci->pv )) == -1) in write_cabinet()
H A Dfdi.c2075 cabhf = CAB(fdi)->open(fullpath, _O_RDONLY|_O_BINARY, _S_IREAD | _S_IWRITE); in fdi_decomp()
2487 cabhf = fdi->open(fullpath, _O_RDONLY|_O_BINARY, _S_IREAD | _S_IWRITE); in FDICopy()
/reactos/modules/rostests/winetests/cabinet/
H A Dfdi.c749 ok(pmode == (_S_IREAD | _S_IWRITE), "expected _S_IREAD | _S_IWRITE, got %x\n", pmode); in fdi_mem_open()
924 fd = fdi_mem_open(memory_block, _O_BINARY, _S_IREAD | _S_IWRITE); in test_FDICopy()