Home
last modified time | relevance | path

Searched refs:_O_RDONLY (Results 1 – 16 of 16) sorted by relevance

/reactos/sdk/include/crt/
H A Dfcntl.h11 #define _O_RDONLY 0x0000 macro
23 #define _O_ACCMODE (_O_RDONLY|_O_WRONLY|_O_RDWR)
34 #define O_RDONLY _O_RDONLY
/reactos/sdk/include/ucrt/
H A Dfcntl.h18 #define _O_RDONLY 0x0000 // open for reading only macro
49 #define O_RDONLY _O_RDONLY
/reactos/drivers/bus/acpi/acpica/include/platform/
H A Dacwin64.h89 #define O_RDONLY _O_RDONLY
H A Dacwin.h108 #define O_RDONLY _O_RDONLY
/reactos/modules/rostests/winetests/msvcrt/
H A Dfile.c1159 tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ in test_file_write_read()
1179 tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ in test_file_write_read()
1194 tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ in test_file_write_read()
1238 tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ in test_file_write_read()
1246 tempfd = _open(tempf,_O_RDONLY|_O_TEXT); /* open in TEXT mode */ in test_file_write_read()
1272 tempfd = _open(tempf, _O_RDONLY|_O_BINARY, 0); in test_file_write_read()
1279 tempfd = _open(tempf, _O_RDONLY|_O_WTEXT, 0); in test_file_write_read()
1300 tempfd = _open(tempf, _O_RDONLY|_O_BINARY, 0); in test_file_write_read()
1307 tempfd = _open(tempf, _O_RDONLY|_O_WTEXT, 0); in test_file_write_read()
1330 tempfd = _open(tempf, _O_RDONLY|_O_WTEXT, 0); in test_file_write_read()
[all …]
H A Dheaders.c375 CHECK_DEF(_O_RDONLY); in test_defines()
/reactos/dll/win32/cabinet/
H A Dcabinet.h37 #define _O_RDONLY 0 macro
40 #define _O_ACCMODE (_O_RDONLY|_O_WRONLY|_O_RDWR)
H A Dcabinet_main.c91 case _O_RDONLY: in fdi_open()
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/sdk/lib/ucrt/inc/
H A Dcorecrt_internal_stdio.h546 result._lowio_mode &= ~(_O_RDONLY | _O_WRONLY);
679 result._lowio_mode = _O_RDONLY;
/reactos/sdk/lib/ucrt/lowio/
H A Dopen.cpp242 switch (oflag & (_O_RDONLY | _O_WRONLY | _O_RDWR)) in decode_access_flags()
244 case _O_RDONLY: in decode_access_flags()
/reactos/dll/win32/setupapi/
H A Dsetupcab.c103 switch(oflag & (_O_RDONLY | _O_WRONLY | _O_RDWR)) { in sc_cb_open()
104 case _O_RDONLY: in sc_cb_open()
/reactos/sdk/lib/3rdparty/stlport/src/details/
H A Dfstream_stdio.cpp70 # define O_RDONLY _O_RDONLY
/reactos/dll/win32/msi/
H A Dmedia.c117 case _O_RDONLY: in cabinet_open()
/reactos/sdk/lib/crt/stdio/
H A Dfile.c1396 *open_flags = plus ? _O_RDWR : _O_RDONLY; in msvcrt_get_flags()
1793 switch (oflags & (_O_RDONLY | _O_WRONLY | _O_RDWR)) in _wsopen_s()
1795 case _O_RDONLY: access |= GENERIC_READ; break; in _wsopen_s()
/reactos/modules/rosapps/applications/explorer-old/
H A Dexplorer.cpp1110 _dup2(_open_osfhandle((long)GetStdHandle(STD_INPUT_HANDLE), _O_RDONLY), 0); in _tWinMain()