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

1 2 3 4

  /external/qemu/android/utils/
path.h 24 /* O_BINARY is required in the MS C library to avoid opening file
27 #if !defined(_WIN32) && !defined(O_BINARY)
28 # define O_BINARY 0
  /external/chromium_org/third_party/ots/test/
ot-sanitise.cc 23 #define ADDITIONAL_OPEN_FLAGS O_BINARY
61 ::setmode(fileno(stdout), O_BINARY);
  /external/qemu/distrib/libsparse/src/
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
72 in = open(argv[1], O_RDONLY | O_BINARY);
82 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);
  /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
72 in = open(argv[1], O_RDONLY | O_BINARY);
82 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);
append2simg.c 32 #ifndef O_BINARY
33 #define O_BINARY 0
79 output = open(output_path, O_RDWR | O_BINARY);
91 input = open(input_path, O_RDONLY | O_BINARY);
114 tmp_fd = open(tmp_path, O_WRONLY | O_CREAT | O_BINARY, 0664);
  /system/extras/f2fs_utils/
make_f2fs_main.c 29 #ifndef USE_MINGW /* O_BINARY is windows-specific flag */
30 #define O_BINARY 0
73 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /dalvik/libdex/
CmdUtils.cpp 29 #ifndef O_BINARY
30 #define O_BINARY 0
176 fd = open(fileName, O_RDONLY | 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/libjpeg_turbo/
cdjpeg.c 154 setmode(fileno(stdin), O_BINARY);
172 setmode(fileno(stdout), O_BINARY);
  /external/jpeg/
cdjpeg.c 154 setmode(fileno(stdin), O_BINARY);
172 setmode(fileno(stdout), O_BINARY);
  /external/qemu/distrib/ext4_utils/src/
make_ext4fs_main.c 43 #ifndef USE_MINGW /* O_BINARY is windows-specific flag */
44 #define O_BINARY 0
194 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
ext2simg.c 39 #ifndef USE_MINGW /* O_BINARY is windows-specific flag */
40 #define O_BINARY 0
241 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /external/qemu/distrib/jpeg-6b/
cdjpeg.c 154 setmode(fileno(stdin), O_BINARY);
172 setmode(fileno(stdout), O_BINARY);
  /system/extras/ext4_utils/
make_ext4fs_main.c 44 #ifndef USE_MINGW /* O_BINARY is windows-specific flag */
45 #define O_BINARY 0
220 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
ext2simg.c 38 #ifndef USE_MINGW /* O_BINARY is windows-specific flag */
39 #define O_BINARY 0
180 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /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);
  /external/openssl/crypto/rand/
randfile.c 208 #ifndef O_BINARY
209 #define O_BINARY 0
213 int fd = open(file, O_WRONLY|O_CREAT|O_BINARY, 0600);
  /external/qemu/slirp-android/
slirp.h 40 # define O_BINARY 0
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 38 * We must open binary files using open(path, ... | O_BINARY) under Windows.
41 #ifndef O_BINARY
42 # 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);

Completed in 343 milliseconds

1 2 3 4