Searched defs:O_DSYNC (Results 1 - 5 of 5) sorted by relevance

/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dfcntl.h14 #define O_DSYNC 0x0010 /* used to be O_SYNC, see below */ macro
23 * Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using
25 * for O_DSYNC semantics now, but using the correct symbolic name for it.
28 * new headers get at least O_DSYNC semantics on older kernels.
30 * This has the nice side-effect that we can simply test for O_DSYNC
31 * wherever we do not care if O_DSYNC or O_SYNC is used.
36 #define O_SYNC (__O_SYNC|O_DSYNC)
/external/bison/darwin-lib/
H A Dfcntl.h523 #ifndef O_DSYNC
524 # define O_DSYNC 0 macro
/external/bison/linux-lib/
H A Dfcntl.h523 #ifndef O_DSYNC
524 # define O_DSYNC 0 macro
/external/kernel-headers/original/uapi/asm-generic/
H A Dfcntl.h40 #ifndef O_DSYNC
41 #define O_DSYNC 00010000 /* used to be O_SYNC, see below */ macro
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)
/external/qemu/block/
H A Draw-posix.c81 /* OS X does not have O_DSYNC */
82 #ifndef O_DSYNC
84 #define O_DSYNC O_SYNC macro
86 #define O_DSYNC O_FSYNC macro
90 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
92 #define O_DIRECT O_DSYNC
144 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
149 s->open_flags |= O_DSYNC;

Completed in 1928 milliseconds