HomeSort by relevance Sort by last modified time
    Searched defs:O_BINARY (Results 26 - 50 of 67) sorted by null

12 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
main.c 456 _setmode(fileno(stdin), O_BINARY);
457 _setmode(fileno(stdout), O_BINARY);
  /external/ImageMagick/MagickCore/
studio.h 319 #if !defined(O_BINARY)
320 #define O_BINARY 0x00
  /external/ImageMagick/MagickWand/
studio.h 301 #if !defined(O_BINARY)
302 #define O_BINARY 0x00
  /external/bison/darwin-lib/
fcntl.h 602 O_BINARY is usually declared in fcntl.h */
603 #if !defined O_BINARY && defined _O_BINARY
605 # define O_BINARY _O_BINARY
610 /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect. */
611 # undef O_BINARY
615 #ifndef O_BINARY
616 # define O_BINARY 0
  /external/bison/linux-lib/
fcntl.h 602 O_BINARY is usually declared in fcntl.h */
603 #if !defined O_BINARY && defined _O_BINARY
605 # define O_BINARY _O_BINARY
610 /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect. */
611 # undef O_BINARY
615 #ifndef O_BINARY
616 # define O_BINARY 0
  /external/boringssl/src/tool/
digest.cc 31 #if !defined(O_BINARY)
32 #define O_BINARY 0
88 int fd = BORINGSSL_OPEN(filename.c_str(), O_RDONLY | O_BINARY);
  /external/e2fsprogs/lib/ext2fs/
sparse_io.c 10 #ifndef O_BINARY
11 #define O_BINARY 0
162 sm->fd = open(params->file, O_CREAT | O_RDWR | O_TRUNC | O_BINARY,
  /external/libjpeg-turbo/
rdjpgcom.c 492 setmode(fileno(stdin), O_BINARY);
wrjpgcom.c 501 setmode(fileno(stdin), O_BINARY);
533 setmode(fileno(stdout), O_BINARY);
  /external/libpng/contrib/gregbook/
wpng.c 110 # include <fcntl.h> /* O_BINARY for fdopen() without text translation */
308 setmode(fileno(stdin), O_BINARY);
309 setmode(fileno(stdout), O_BINARY);
  /external/python/cpython2/Modules/
main.c 497 _setmode(fileno(stdin), O_BINARY);
498 _setmode(fileno(stdout), O_BINARY);
  /frameworks/base/libs/androidfw/
Asset.cpp 45 #ifndef O_BINARY
46 # define O_BINARY 0
141 fd = open(fileName, O_RDONLY | O_BINARY);
202 fd = open(fileName, O_RDONLY | O_BINARY);
686 return open(fname, O_RDONLY | O_BINARY);
693 return open(mFileName, O_RDONLY | O_BINARY);
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/config/
_mwerks.h 155 # define O_BINARY 0
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 77 # define O_BINARY _O_BINARY
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/config/
_mwerks.h 155 # define O_BINARY 0
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 77 # define O_BINARY _O_BINARY
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/config/
_mwerks.h 155 # define O_BINARY 0
  /system/core/libcutils/
fs_config.cpp 38 #ifndef O_BINARY
39 #define O_BINARY 0
249 fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_BINARY));
254 fd = TEMP_FAILURE_RETRY(open(conf[which][dir], O_RDONLY | O_BINARY));
  /system/extras/f2fs_utils/
f2fs_ioutils.c 82 #define O_BINARY 0
  /external/curl/src/
tool_operate.c 94 #ifndef O_BINARY
95 /* since O_BINARY as used in bitmasks, setting it to zero makes it usable in
97 # define O_BINARY 0
660 infd = open(uploadfile, O_RDONLY | O_BINARY);
663 infd = open(uploadfile, O_RDONLY | O_BINARY,
669 infd = open(uploadfile, O_RDONLY | O_BINARY);
    [all...]
  /external/f2fs-tools/lib/
libf2fs.c 35 #ifndef _WIN32 /* O_BINARY is windows-specific flag */
36 #define O_BINARY 0
697 fd = open((char *)dev->path, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /external/harfbuzz_ng/util/
options.cc 557 setmode (fileno (stdin), O_BINARY);
741 setmode (fileno (stdout), O_BINARY);
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 86 #define pipe(fds) _pipe(fds, 4096, O_BINARY)
89 #ifndef O_BINARY
91 #define O_BINARY _O_BINARY
93 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
727 open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0777);
758 open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0777);
  /frameworks/base/tools/aapt/
XMLNode.cpp 16 #define O_BINARY 0
589 int fd = open(file->getSourceFile().string(), O_RDONLY | O_BINARY);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xw32defs.h 63 # define O_BINARY _O_BINARY

Completed in 2060 milliseconds

12 3