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

12 3

  /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 30 #if !defined(O_BINARY)
31 #define O_BINARY 0
84 int fd = open(filename.c_str(), O_RDONLY | O_BINARY);
  /external/libjpeg-turbo/
rdjpgcom.c 491 setmode(fileno(stdin), O_BINARY);
wrjpgcom.c 500 setmode(fileno(stdin), O_BINARY);
532 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);
  /frameworks/base/libs/androidfw/
Asset.cpp 44 #ifndef O_BINARY
45 # define O_BINARY 0
140 fd = open(fileName, O_RDONLY | O_BINARY);
201 fd = open(fileName, O_RDONLY | O_BINARY);
654 return open(fname, O_RDONLY | O_BINARY);
661 return open(mFileName, O_RDONLY | O_BINARY);
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 77 # define O_BINARY _O_BINARY
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_mwerks.h 155 # define O_BINARY 0
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/config/
_mwerks.h 155 # define O_BINARY 0
  /system/tools/aidl/
aidl.cpp 48 #ifndef O_BINARY
49 # 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/dbus/dbus/
dbus-sysdeps-util-unix.c 58 #ifndef O_BINARY
59 #define O_BINARY 0
179 fd = open (cfilename, O_WRONLY|O_CREAT|O_EXCL|O_BINARY, 0644);
  /external/harfbuzz_ng/util/
options.cc 493 setmode (fileno (stdin), O_BINARY);
675 setmode (fileno (stdout), O_BINARY);
  /external/opencv3/3rdparty/libjasper/jasper/
jas_stream.h 98 /* On most UNIX systems, we probably need to define O_BINARY ourselves. */
99 #ifndef O_BINARY
100 #define O_BINARY 0
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 81 #define pipe(fds) _pipe(fds, 4096, O_BINARY)
84 #ifndef O_BINARY
86 #define O_BINARY _O_BINARY
88 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
685 open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0777);
716 open(filename.c_str(), O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0777);
  /external/tcpdump/
util.c 810 * On UNIX, that's not necessary. O_BINARY is defined on Windows;
813 #ifndef O_BINARY
814 #define O_BINARY 0
824 fd = open(fname, O_RDONLY|O_BINARY);
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 63 # define O_BINARY _O_BINARY
  /system/core/libsparse/
output_file.c 39 #define O_BINARY 0
751 int file_fd = open(file, O_RDONLY | O_BINARY);
  /system/extras/ext4_utils/
make_ext4fs.c 78 #define O_BINARY 0
455 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /external/ceres-solver/examples/
libmv_bundle_adjuster.cc 104 // O_BINARY is not defined on unix like platforms, as there is no
106 #define O_BINARY 0
280 file_descriptor_ = open(file_name.c_str(), O_RDONLY | O_BINARY);
  /external/curl/tests/server/
sockfilt.c     [all...]

Completed in 1857 milliseconds

12 3