Searched refs:_O_BINARY (Results 1 – 25 of 47) sorted by relevance
12
/external/boringssl/src/tool/ |
D | tool.cc | 95 if (_setmode(_fileno(stdin), _O_BINARY) == -1) { in main() 99 if (_setmode(_fileno(stdout), _O_BINARY) == -1) { in main() 103 if (_setmode(_fileno(stderr), _O_BINARY) == -1) { in main()
|
/external/expat/xmlwf/ |
D | readfilemap.c | 69 # ifdef _O_BINARY 70 # define O_BINARY _O_BINARY
|
D | xmlfile.c | 60 #ifdef _O_BINARY 61 #define O_BINARY _O_BINARY
|
/external/protobuf/src/google/protobuf/compiler/ |
D | plugin.cc | 163 _setmode(STDIN_FILENO, _O_BINARY); in PluginMain() 164 _setmode(STDOUT_FILENO, _O_BINARY); in PluginMain()
|
/external/protobuf/src/google/protobuf/testing/ |
D | googletest.cc | 60 #ifdef _O_BINARY 61 #define O_BINARY _O_BINARY
|
/external/libdivsufsort/examples/ |
D | mksary.c | 97 if(_setmode(_fileno(stdin), _O_BINARY) == -1) { 121 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
|
D | unbwt.c | 111 if(_setmode(_fileno(stdin), _O_BINARY) == -1) { 135 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
|
D | bwt.c | 118 if(_setmode(_fileno(stdin), _O_BINARY) == -1) { 143 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
|
D | suftest.c | 97 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
|
/external/libpcap/testprogs/ |
D | unix.h | 50 #define O_BINARY _O_BINARY
|
/external/libdivsufsort/android_include/ |
D | config.h | 61 # define _O_BINARY 0 macro
|
/external/tensorflow/tensorflow/lite/toco/ |
D | toco_port.cc | 150 constexpr int kFileReadFlags = _O_RDONLY | _O_BINARY; 151 constexpr int kFileWriteFlags = _O_WRONLY | _O_BINARY | _O_CREAT;
|
/external/skqp/tools/ |
D | skp_parser.cpp | 71 (void)_setmode(_fileno(stdout), _O_BINARY); in main()
|
/external/skia/tools/ |
D | skp_parser.cpp | 71 (void)_setmode(_fileno(stdout), _O_BINARY); in main()
|
/external/libcups/cups/ |
D | tempfile.c | 137 fd = open(filename, _O_CREAT | _O_RDWR | _O_TRUNC | _O_BINARY, in cupsTempFd()
|
/external/lz4/programs/ |
D | platform.h | 137 # define SET_BINARY_MODE(file) { int unused=_setmode(_fileno(file), _O_BINARY); (void)unused; }
|
/external/clang/tools/c-arcmt-test/ |
D | c-arcmt-test.c | 117 _setmode( _fileno(stdout), _O_BINARY ); in main()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | Program.inc | 391 int result = _setmode( _fileno(stdin), _O_BINARY ); 396 int result = _setmode( _fileno(stdout), _O_BINARY ); 401 int result = _setmode( _fileno(stderr), _O_BINARY );
|
/external/protobuf/src/google/protobuf/ |
D | message_unittest.cc | 66 #ifdef _O_BINARY 67 #define O_BINARY _O_BINARY
|
/external/libdivsufsort/include/ |
D | config.h.cmake | 61 # define _O_BINARY 0
|
D | CMakeLists.txt | 37 check_symbol_exists("_O_BINARY" "fcntl.h" HAVE__O_BINARY)
|
/external/libvpx/libvpx/ |
D | tools_common.c | 34 #define _O_BINARY O_BINARY macro 52 _setmode(_fileno(stream), _O_BINARY); in set_binary_mode()
|
/external/libaom/libaom/common/ |
D | tools_common.c | 35 #define _O_BINARY O_BINARY macro 53 _setmode(_fileno(stream), _O_BINARY); in set_binary_mode()
|
/external/libpcap/ |
D | savefile.c | 77 #define SET_BINMODE(f) _setmode(_fileno(f), _O_BINARY)
|
/external/python/cpython3/Modules/_io/ |
D | winconsoleio.c | 480 self->fd = _open_osfhandle((intptr_t)self->handle, _O_WRONLY | _O_BINARY); in _io__WindowsConsoleIO_fileno_impl() 482 self->fd = _open_osfhandle((intptr_t)self->handle, _O_RDONLY | _O_BINARY); in _io__WindowsConsoleIO_fileno_impl()
|
12