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

1 2 3

  /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)
  /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)
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 62 static final int O_DSYNC = OsConstants.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)
  /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)
  /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/Lib/plat-irix6/
FILE.py 571 O_DSYNC = 0x20
  /libcore/luni/src/main/java/android/system/
OsConstants.java 379 public static final int O_DSYNC = placeholder();
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
zerrors_darwin_386.go 731 O_DSYNC = 0x400000
    [all...]
zerrors_darwin_amd64.go 731 O_DSYNC = 0x400000
    [all...]
zerrors_darwin_arm64.go 744 O_DSYNC = 0x400000
    [all...]
zerrors_solaris_amd64.go 637 O_DSYNC = 0x40
    [all...]
zerrors_linux_386.go 651 O_DSYNC = 0x1000
    [all...]
zerrors_linux_amd64.go 651 O_DSYNC = 0x1000
    [all...]
zerrors_linux_arm.go 651 O_DSYNC = 0x1000
    [all...]
zerrors_linux_arm64.go     [all...]
zerrors_linux_mips.go 787 O_DSYNC = 0x10
    [all...]
zerrors_linux_mips64.go     [all...]
  /prebuilts/go/linux-x86/src/syscall/
zerrors_darwin_386.go 731 O_DSYNC = 0x400000
    [all...]
zerrors_darwin_amd64.go 731 O_DSYNC = 0x400000
    [all...]
zerrors_darwin_arm64.go 744 O_DSYNC = 0x400000
    [all...]
zerrors_solaris_amd64.go 637 O_DSYNC = 0x40
    [all...]

Completed in 802 milliseconds

1 2 3