HomeSort by relevance Sort by last modified time
    Searched refs:O_BINARY (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/bison/lib/
binary-io.h 21 O_BINARY is guaranteed by the gnulib <fcntl.h>. */
35 (must be O_BINARY or O_TEXT) and returns the previous mode. */
36 #if O_BINARY
54 return O_BINARY;
65 # define SET_BINARY(fd) ((void) (!isatty (fd) ? (set_binary_mode (fd, O_BINARY), 0) : 0))
67 # define SET_BINARY(fd) ((void) set_binary_mode (fd, O_BINARY))
pipe2.c 70 if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_BINARY | O_TEXT)) != 0)
138 # if O_BINARY
139 if (flags & O_BINARY)
141 setmode (fd[1], O_BINARY);
142 setmode (fd[0], O_BINARY);
fcntl.in.h 290 O_BINARY is usually declared in fcntl.h */
291 #if !defined O_BINARY && defined _O_BINARY
293 # define O_BINARY _O_BINARY
298 /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect. */
299 # undef O_BINARY
303 #ifndef O_BINARY
304 # define O_BINARY 0
  /system/core/libsparse/
simg2img.c 29 #ifndef O_BINARY
30 #define O_BINARY 0
51 out = open(argv[argc - 1], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
61 in = open(argv[i], O_RDONLY | O_BINARY);
img2simg.c 32 #ifndef O_BINARY
33 #define O_BINARY 0
73 in = open(argv[1], O_RDONLY | O_BINARY);
83 out = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
simg2simg.c 33 #ifndef O_BINARY
34 #define O_BINARY 0
61 in = open(argv[1], O_RDONLY | O_BINARY);
98 out = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
  /external/chromium_org/third_party/ots/test/
ot-sanitise.cc 23 #define ADDITIONAL_OPEN_FLAGS O_BINARY
61 ::setmode(fileno(stdout), O_BINARY);
  /external/lzma/CPP/Common/
C_FileIO.cpp 14 #ifdef O_BINARY
15 flags |= O_BINARY;
  /external/qemu/android/utils/
path.h 21 /* O_BINARY is required in the MS C library to avoid opening file
24 #if !defined(_WIN32) && !defined(O_BINARY)
25 # define O_BINARY 0
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
googletest.cc 59 #ifndef O_BINARY
61 #define O_BINARY _O_BINARY
63 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
159 O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0777);
174 O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0777);
  /external/protobuf/src/google/protobuf/testing/
googletest.cc 59 #ifndef O_BINARY
61 #define O_BINARY _O_BINARY
63 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
159 O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0777);
174 O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0777);
  /dalvik/libdex/
CmdUtils.cpp 29 #ifndef O_BINARY
30 #define O_BINARY 0
177 fd = open(fileName, O_RDONLY | O_BINARY);
  /external/libvpx/libvpx/
tools_common.c 22 #define _O_BINARY O_BINARY
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /external/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /external/protobuf/src/google/protobuf/
message_unittest.cc 62 #ifndef O_BINARY
64 #define O_BINARY _O_BINARY
66 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
110 int file = open(filename.c_str(), O_RDONLY | O_BINARY);
123 int file = open(filename.c_str(), O_RDONLY | O_BINARY);
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
randfile.c 207 #ifndef O_BINARY
208 #define O_BINARY 0
212 int fd = open(file, O_WRONLY|O_CREAT|O_BINARY, 0600);
  /external/openssl/crypto/rand/
randfile.c 207 #ifndef O_BINARY
208 #define O_BINARY 0
212 int fd = open(file, O_WRONLY|O_CREAT|O_BINARY, 0600);
  /external/jpeg/
cdjpeg.c 154 setmode(fileno(stdin), O_BINARY);
172 setmode(fileno(stdout), O_BINARY);
  /external/qemu/
arm-semi.c 60 #ifndef O_BINARY
61 #define O_BINARY 0
89 O_RDONLY | O_BINARY,
91 O_RDWR | O_BINARY,
93 O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
95 O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
97 O_WRONLY | O_CREAT | O_APPEND | O_BINARY,
99 O_RDWR | O_CREAT | O_APPEND | O_BINARY
  /external/qemu/distrib/jpeg-6b/
cdjpeg.c 154 setmode(fileno(stdin), O_BINARY);
172 setmode(fileno(stdout), O_BINARY);
  /external/openssh/openbsd-compat/
bsd-cygwin_util.c 56 return (open(filename, flags | O_BINARY, mode));
  /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/chromium_org/third_party/protobuf/src/google/protobuf/
message_unittest.cc 62 #ifndef O_BINARY
64 #define O_BINARY _O_BINARY
66 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
110 int file = open(filename.c_str(), O_RDONLY | O_BINARY);
123 int file = open(filename.c_str(), O_RDONLY | O_BINARY);

Completed in 421 milliseconds

1 2 3 4 5 6