HomeSort by relevance Sort by last modified time
    Searched refs:O_BINARY (Results 51 - 75 of 84) sorted by null

1 23 4

  /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/openssl/crypto/des/
des.c 310 setmode(fileno(DES_IN),O_BINARY);
312 setmode(fileno(DES_OUT),O_BINARY);
  /external/qemu/hw/
goldfish_nand.c 560 rwfd = open(rwfilename, O_BINARY | (read_only ? O_RDONLY : O_RDWR));
573 initfd = open(initfilename, O_BINARY | O_RDONLY);
goldfish_audio.c 301 s->input_fd = open(s->input_source, O_BINARY | O_RDONLY);
  /external/qemu/android/utils/
path.c 534 fd = open(fn, O_BINARY | O_RDONLY);
  /external/qemu/block/
dmg.c 84 s->fd = open(filename, O_RDONLY | O_BINARY);
raw-posix.c 135 s->open_flags = open_flags | O_BINARY;
850 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
991 fd = open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
1139 fd = open(filename, O_WRONLY | O_BINARY);
    [all...]
raw-win32.c 226 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
vmdk.c 212 snp_fd = open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, 0644);
215 p_fd = open(backing_file, O_RDONLY | O_BINARY | O_LARGEFILE);
736 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
vpc.c 502 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
  /external/qemu/slirp/
tftp.c 114 fd = open(buffer, O_RDONLY | O_BINARY);
  /external/qemu/slirp-android/
tftp.c 114 fd = open(buffer, O_RDONLY | O_BINARY);
  /external/zlib/
minigzip.c 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  /external/chromium/third_party/icu/source/tools/genrb/
derb.c 44 #ifndef O_BINARY
45 #define O_BINARY _O_BINARY
297 if (setmode(fileno(out), O_BINARY) == -1) {
  /external/icu4c/tools/genrb/
derb.c 44 #ifndef O_BINARY
45 #define O_BINARY _O_BINARY
297 if (setmode(fileno(out), O_BINARY) == -1) {
  /frameworks/base/tools/aidl/
aidl.cpp 22 #ifndef O_BINARY
23 # define O_BINARY 0
918 O_RDWR|O_CREAT|O_TRUNC|O_BINARY,
  /external/dbus/dbus/
dbus-sysdeps-unix.c 71 #ifndef O_BINARY
72 #define O_BINARY 0
    [all...]
  /external/bzip2/
bzip2.c 108 O_BINARY ); \
120 O_BINARY ); \
149 O_BINARY ); \
    [all...]
  /external/giflib/
dgif_lib.c 73 | O_BINARY
114 setmode(FileHandle, O_BINARY); /* Make sure it is in binary mode. */
    [all...]
  /bionic/libc/tzcode/
localtime.c 47 ** SunOS 4.1.1 headers lack O_BINARY.
50 #ifdef O_BINARY
51 #define OPEN_MODE (O_RDONLY | O_BINARY)
52 #endif /* defined O_BINARY */
53 #ifndef O_BINARY
55 #endif /* !defined O_BINARY */
    [all...]
  /external/bluetooth/glib/gio/
glocalfile.c 49 #ifndef O_BINARY
50 #define O_BINARY 0
1284 fd = g_open (local->filename, O_RDONLY|O_BINARY, 0);
    [all...]
  /external/chromium/third_party/icu/source/tools/tzcode/
localtime.c 38 ** SunOS 4.1.1 headers lack O_BINARY.
41 #ifdef O_BINARY
42 #define OPEN_MODE (O_RDONLY | O_BINARY)
43 #endif /* defined O_BINARY */
44 #ifndef O_BINARY
46 #endif /* !defined O_BINARY */
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 38 ** SunOS 4.1.1 headers lack O_BINARY.
41 #ifdef O_BINARY
42 #define OPEN_MODE (O_RDONLY | O_BINARY)
43 #endif /* defined O_BINARY */
44 #ifndef O_BINARY
46 #endif /* !defined O_BINARY */
    [all...]
  /system/core/libcutils/
tztime.c 46 ** SunOS 4.1.1 headers lack O_BINARY.
49 #ifdef O_BINARY
50 #define OPEN_MODE (O_RDONLY | O_BINARY)
51 #endif /* defined O_BINARY */
52 #ifndef O_BINARY
54 #endif /* !defined O_BINARY */
    [all...]
  /external/qemu/
qemu-char-android.c 638 TFR(fd_out = open(file_out, O_WRONLY | O_TRUNC | O_CREAT | O_BINARY, 0666));
651 TFR(fd_in = open(filename_in, O_RDWR | O_BINARY));
652 TFR(fd_out = open(filename_out, O_RDWR | O_BINARY));
658 TFR(fd_in = fd_out = open(filename, O_RDWR | O_BINARY));
    [all...]

Completed in 772 milliseconds

1 23 4