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

1 2 3

  /external/python/cpython3/PC/
generrmap.c 12 _setmode(fileno(stdout), O_BINARY);
  /system/core/base/include/android-base/
file.h 24 #if !defined(_WIN32) && !defined(O_BINARY)
25 #define O_BINARY 0
  /system/core/libsparse/
simg2img.c 29 #ifndef O_BINARY
30 #define O_BINARY 0
50 out = open(argv[argc - 1], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
60 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);
  /toolchain/binutils/binutils-2.27/include/
binary-io.h 22 define O_BINARY in <fcntl.h>, and the MSVC7 <stdio.h> doesn't
28 #if !defined O_BINARY && defined _O_BINARY
30 # define O_BINARY _O_BINARY
34 /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */
35 # undef O_BINARY
38 #if O_BINARY
51 # define SET_BINARY(fd) (!isatty (fd) ? (setmode (fd, O_BINARY), 0) : 0)
53 # define SET_BINARY(fd) setmode (fd, O_BINARY)
57 # undef O_BINARY
58 # define O_BINARY
    [all...]
  /external/python/cpython2/Launcher/
launcher_main.cpp 62 _setmode(fileno(stdin), O_BINARY);
63 _setmode(fileno(stdout), O_BINARY);
  /toolchain/binutils/binutils-2.27/ld/
sysdep.h 96 #ifndef O_BINARY
97 #define O_BINARY 0
  /dalvik/libdex/
CmdUtils.cpp 29 #ifndef O_BINARY
30 #define O_BINARY 0
57 fd = open(outFileName, O_RDWR | O_CREAT | O_EXCL | O_BINARY, 0600);
176 fd = open(fileName, O_RDONLY | O_BINARY);
  /external/expat/xmlwf/
readfilemap.c 65 #ifndef O_BINARY
67 # define O_BINARY _O_BINARY
69 # define O_BINARY 0
87 fd = topen(name, O_RDONLY|O_BINARY);
xmlfile.c 59 #ifndef O_BINARY
61 #define O_BINARY _O_BINARY
63 #define O_BINARY 0
196 fd = topen(filename, O_BINARY|O_RDONLY);
  /external/libjpeg-turbo/
cdjpeg.c 117 setmode(fileno(stdin), O_BINARY);
135 setmode(fileno(stdout), O_BINARY);
  /toolchain/binutils/binutils-2.27/libiberty/
mkstemps.c 54 #ifndef O_BINARY
55 # define O_BINARY 0
128 fd = open (pattern, O_BINARY|O_RDWR|O_CREAT|O_EXCL, 0600);
  /external/pdfium/core/fxcrt/
cfx_fileaccess_posix.cpp 13 #ifndef O_BINARY
14 #define O_BINARY 0
15 #endif // O_BINARY
28 nFlags = O_BINARY | O_LARGEFILE;
  /external/curl/tests/libtest/
first.c 137 #ifdef O_BINARY
139 _setmode(stdout, O_BINARY);
141 setmode(fileno(stdout), O_BINARY);
  /external/e2fsprogs/lib/ext2fs/
initialize.c 31 #ifndef O_BINARY
32 #define O_BINARY 0
137 io_flags |= O_BINARY;
  /external/libcups/cups/
file-private.h 53 * Some operating systems don't define O_BINARY, which is used by Microsoft
57 # ifndef O_BINARY
58 # define O_BINARY 0
59 # endif /* !O_BINARY */
request.c 28 #ifndef O_BINARY
29 # define O_BINARY 0
30 #endif /* O_BINARY */
58 if ((infile = open(filename, O_RDONLY | O_BINARY)) < 0)
  /external/libpcap/tests/
filtertest.c 116 * On UNIX, that's not necessary. O_BINARY is defined on Windows;
119 #ifndef O_BINARY
120 #define O_BINARY 0
130 fd = open(fname, O_RDONLY|O_BINARY);
valgrindtest.c 159 * On UNIX, that's not necessary. O_BINARY is defined on Windows;
162 #ifndef O_BINARY
163 #define O_BINARY 0
173 fd = open(fname, O_RDONLY|O_BINARY);
  /external/libpng/contrib/gregbook/
wpng.c 111 # include <fcntl.h> /* O_BINARY for fdopen() without text translation */
309 setmode(fileno(stdin), O_BINARY);
310 setmode(fileno(stdout), O_BINARY);
  /external/protobuf/src/google/protobuf/
message_unittest.cc 65 #ifndef O_BINARY
67 #define O_BINARY _O_BINARY
69 #define O_BINARY 0 // If this isn't defined, the platform doesn't need it.
113 int file = open(filename.c_str(), O_RDONLY | O_BINARY);
126 int file = open(filename.c_str(), O_RDONLY | O_BINARY);
  /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.
171 O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0777);
186 O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0777);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fcntl.h 44 #define O_BINARY _O_BINARY

Completed in 293 milliseconds

1 2 3