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

1 2 3 4

  /bionic/libc/kernel/uapi/asm-mips/asm/
fcntl.h 23 #define O_DSYNC 0x0010
32 #define O_SYNC (__O_SYNC | O_DSYNC)
  /external/kernel-headers/original/uapi/asm-mips/asm/
fcntl.h 15 #define O_DSYNC 0x0010 /* used to be O_SYNC, see below */
24 * Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using
26 * for O_DSYNC semantics now, but using the correct symbolic name for it.
29 * new headers get at least O_DSYNC semantics on older kernels.
31 * This has the nice side-effect that we can simply test for O_DSYNC
32 * wherever we do not care if O_DSYNC or O_SYNC is used.
37 #define O_SYNC (__O_SYNC|O_DSYNC)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 40 #ifndef O_DSYNC
41 #define O_DSYNC 00010000 /* used to be O_SYNC, see below */
66 * Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using
68 * for O_DSYNC semantics now, but using the correct symbolic name for it.
71 * new headers get at least O_DSYNC semantics on older kernels.
73 * This has the nice side-effect that we can simply test for O_DSYNC
74 * wherever we do not care if O_DSYNC or O_SYNC is used.
80 #define O_SYNC (__O_SYNC|O_DSYNC)
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 44 #ifndef O_DSYNC
45 #define O_DSYNC 00010000
70 #define O_SYNC (__O_SYNC | O_DSYNC)
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 41 #ifndef O_DSYNC
42 #define O_DSYNC 00010000 /* used to be O_SYNC, see below */
67 * Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using
69 * for O_DSYNC semantics now, but using the correct symbolic name for it.
72 * new headers get at least O_DSYNC semantics on older kernels.
74 * This has the nice side-effect that we can simply test for O_DSYNC
75 * wherever we do not care if O_DSYNC or O_SYNC is used.
81 #define O_SYNC (__O_SYNC|O_DSYNC)
  /libcore/ojluni/src/main/native/
io_util.h 37 #ifndef O_DSYNC
38 #define O_DSYNC O_FSYNC
40 #elif !defined(O_DSYNC) || !defined(O_SYNC)
42 #define O_DSYNC (0x2000)
  /external/strace/tests/
openat.c 100 # ifdef O_DSYNC
101 { ARG_STR(O_DSYNC) },
  /external/strace/tests-m32/
openat.c 100 # ifdef O_DSYNC
101 { ARG_STR(O_DSYNC) },
  /external/strace/tests-mx32/
openat.c 100 # ifdef O_DSYNC
101 { ARG_STR(O_DSYNC) },
  /external/ltp/testcases/kernel/fs/doio/
open_flags.c 129 #if O_DSYNC
130 {"O_DSYNC", O_DSYNC},
iogen.c 350 {"dsync", O_DSYNC}, /* affects writes */
352 {"rsync+dsync", O_RSYNC | O_DSYNC},
    [all...]
  /external/strace/xlat/
open_mode_flags.h 36 #if defined(O_DSYNC) || (defined(HAVE_DECL_O_DSYNC) && HAVE_DECL_O_DSYNC)
37 XLAT(O_DSYNC),
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 62 static final int O_DSYNC = OsConstants.O_DSYNC;
UnixChannelFactory.java 235 oflags |= O_DSYNC;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/
2-1.c 61 if (aio_fsync(O_DSYNC, &aiocb_fsync) != 0) {
  /bionic/tests/headers/posix/
fcntl_h.c 68 MACRO(O_DSYNC);
  /external/honggfuzz/examples/terminal-emulators/
terminal-test.c 26 fd_tty_write = open("/dev/tty", O_RDWR | O_DSYNC);
28 perror("open('/dev/tty'), O_RDWR | O_DSYNC");
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 38 #define MKOTEMP_FLAGS (O_APPEND | O_CLOEXEC | O_DSYNC | O_RSYNC | O_SYNC)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 63 # define O_DSYNC 010000 /* Synchronize data. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 64 # define O_DSYNC 010000 /* Synchronize data. */
  /external/python/cpython2/RISCOS/Modules/
riscosmodule.c 461 #ifdef O_DSYNC
462 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
  /frameworks/base/core/jni/
fd_utils.cpp 249 // In particular, it can't set O_SYNC and O_DSYNC. We'll have to test for
265 static const int kOpenFlags = (O_RDONLY | O_WRONLY | O_RDWR | O_DSYNC | O_SYNC);
  /external/python/cpython2/Lib/plat-irix6/
FILE.py 571 O_DSYNC = 0x20
  /external/stressapptest/src/
sat.cc 80 #if defined(O_DSYNC)
81 O_DSYNC |
    [all...]
  /hardware/qcom/keymaster/
keymaster_qcom.cpp 206 * O_DSYNC -> uncached memory
212 ion_fd = open("/dev/ion", O_RDONLY | O_DSYNC);

Completed in 1312 milliseconds

1 2 3 4