Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/windows/
DPipeWindows.cpp50 m_read_fd = _open_osfhandle((intptr_t)read, _O_RDONLY); in PipeWindows()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
194 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in OpenNamedPipe()
/external/libwebsockets/include/
Dlibwebsockets.h86 #define _O_RDONLY 0x0000 macro
87 #define O_RDONLY _O_RDONLY
108 #define LWS_O_RDONLY _O_RDONLY
/external/libpcap/testprogs/
Dunix.h47 #define O_RDONLY _O_RDONLY
/external/e2fsprogs/include/nonunix/
Dunistd.h12 #define O_RDONLY _O_RDONLY
/external/libcups/vcnet/
Dconfig.h82 # define O_RDONLY _O_RDONLY
/external/libwebsockets/lib/plat/windows/
Dwindows-file.c45 if (((*flags) & 7) == _O_RDONLY) { in _lws_plat_file_open()
/external/tcpdump/
Dnetdissect-stdinc.h155 #define O_RDONLY _O_RDONLY
/external/marisa-trie/tests/
Dio-test.cc121 ASSERT(::_sopen_s(&fd, "io-test.dat", _O_BINARY | _O_RDONLY, in TestFd()
/external/bc/include/
Dbcl.h167 #define O_RDONLY _O_RDONLY
/external/tensorflow/tensorflow/lite/toco/
Dtoco_port.cc154 constexpr int kFileReadFlags = _O_RDONLY | _O_BINARY;
/external/libevent/test/
Dregress_main.c178 return _open_osfhandle((intptr_t)h,_O_RDONLY); in regress_make_tmpfile()
/external/libpcap/
Dsavefile.c406 fd = _open_osfhandle(osfd, _O_RDONLY); in pcap_hopen_offline_with_tstamp_precision()
/external/libevent/sample/
Dhttp-server.c77 #define O_RDONLY _O_RDONLY
/external/python/cpython3/Modules/_io/
Dwinconsoleio.c483 self->fd = _open_osfhandle((intptr_t)self->handle, _O_RDONLY | _O_BINARY); in _io__WindowsConsoleIO_fileno_impl()
/external/python/cpython2/PC/
D_msi.c178 return _open(pszName, _O_RDONLY | _O_BINARY); in FNFCIGETOPENINFO()
/external/python/cpython3/PC/
D_msi.c182 return _open(pszName, _O_RDONLY | _O_BINARY | O_NOINHERIT); in FNFCIGETOPENINFO()
/external/python/cpython2/Modules/
Dposixmodule.c5248 tm = _O_RDONLY; in posix_popen()
5602 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) { in _PyPopen()
5614 case _O_RDONLY | _O_TEXT: in _PyPopen()
5625 case _O_RDONLY | _O_BINARY: in _PyPopen()
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c723 fh = open(pathname, _O_RDONLY); in do_run_installscript()
/external/python/cpython3/PC/bdist_wininst/
Dinstall.c753 fh = open(pathname, _O_RDONLY | O_NOINHERIT); in do_run_installscript()
/external/python/cpython3/Modules/
Dposixmodule.c10021 fds[0] = _open_osfhandle((intptr_t)read, _O_RDONLY); in os_pipe_impl()