Home
last modified time | relevance | path

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

/external/libwebsockets/include/
Dlibwebsockets.h91 #define _O_RDONLY 0x0000 macro
92 #define O_RDONLY _O_RDONLY
134 #define LWS_O_RDONLY _O_RDONLY
/external/libpcap/testprogs/
Dunix.h47 #define O_RDONLY _O_RDONLY
/external/webp/examples/
Dunicode_gif.h49 int file_handle = _wopen(file_name, _O_RDONLY | _O_BINARY); in DGifOpenFileUnicode()
/external/e2fsprogs/include/nonunix/
Dunistd.h12 #define O_RDONLY _O_RDONLY
/external/cpu_features/src/
Dfilesystem.c29 _sopen_s(&fd, filename, _O_RDONLY, _SH_DENYWR, _S_IREAD); in CpuFeatures_OpenFile()
/external/tcpdump/
Dnetdissect-stdinc.h173 #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/marisa-trie/tests/
Dio-test.cc121 ASSERT(::_sopen_s(&fd, "io-test.dat", _O_BINARY | _O_RDONLY, in TestFd()
/external/tensorflow/tensorflow/lite/toco/
Dtoco_port.cc155 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.c416 fd = _open_osfhandle(osfd, _O_RDONLY); in pcap_hopen_offline_with_tstamp_precision()
/external/bc/include/
Dstatus.h87 #define O_RDONLY _O_RDONLY
/external/libevent/sample/
Dhttp-server.c77 #define O_RDONLY _O_RDONLY
/external/cronet/components/nacl/loader/
Dnacl_listener.cc367 _O_RDONLY | _O_BINARY); in OnStart()
/external/python/cpython3/Modules/_io/
Dwinconsoleio.c371 self->fd = _Py_open_osfhandle_noraise(handle, _O_RDONLY | _O_BINARY); in _io__WindowsConsoleIO___init___impl()
/external/python/cpython3/PC/
D_msi.c239 int result = _wopen(ws, _O_RDONLY | _O_BINARY | O_NOINHERIT); in FNFCIGETOPENINFO()
/external/python/cpython2/PC/
D_msi.c178 return _open(pszName, _O_RDONLY | _O_BINARY); 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/Modules/
Dposixmodule.c10113 fds[0] = _Py_open_osfhandle_noraise(read, _O_RDONLY); in os_pipe_impl()