Home
last modified time | relevance | path

Searched refs:O_SYNC (Results 1 - 25 of 124) sorted by relevance

12345

/third_party/ltp/testcases/network/nfsv4/locks/
H A Dlocktests.h58 #ifdef O_SYNC
59 #define OPENFLAGS (O_CREAT | O_RDWR | O_SYNC )
/third_party/musl/libc-test/src/functionalext/supplement/temp/
H A Dmkostemp.c75 int fd = mkostemp(tmpfile, O_SYNC); in mkostemp_0300()
137 * @tc.desc : Verify mkostemp process fail. Provide error template, specified in flags: O_SYNC,
144 int fd = mkostemp(tmpfile, O_SYNC); in mkostemp_0600()
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
H A Dtypes.rs154 /// `O_DSYNC`. Linux 2.6.32 only supports `O_SYNC`.
155 const DSYNC = linux_raw_sys::general::O_SYNC;
160 /// `O_FSYNC`. Linux 2.6.32 only supports `O_SYNC`.
161 const FSYNC = linux_raw_sys::general::O_SYNC;
181 /// `O_RSYNC`. Linux 2.6.32 only supports `O_SYNC`.
182 const RSYNC = linux_raw_sys::general::O_SYNC;
184 /// `O_SYNC`
185 const SYNC = linux_raw_sys::general::O_SYNC;
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/porting/liteos_m/user/include/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/aarch64/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/generic/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/m68k/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/mipsn32/bits/
H A Dfcntl.h8 #define O_SYNC 040020 macro
/third_party/musl/arch/arm/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/mips/bits/
H A Dfcntl.h8 #define O_SYNC 040020 macro
/third_party/musl/arch/mips64/bits/
H A Dfcntl.h8 #define O_SYNC 040020 macro
/third_party/musl/arch/powerpc/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/powerpc64/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/s390x/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/musl/arch/x32/bits/
H A Dfcntl.h8 #define O_SYNC 04010000 macro
/third_party/ltp/testcases/kernel/controllers/cpuctl_fj/
H A Dcpuctl_fj_simple_echo.c57 if ((fd = open(argv[2], O_RDWR | O_SYNC)) == -1) in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/
H A D12-1.c33 if (aio_fsync(O_SYNC, &aiocb) != -1) { in main()
H A D5-1.c63 if (aio_fsync(O_SYNC, &aiocb_fsync) != 0) { in main()
/third_party/node/lib/internal/fs/
H A Dutils.js80 O_SYNC,
600 case 'sr' : return O_RDONLY | O_SYNC;
603 case 'sr+' : return O_RDWR | O_SYNC;
617 case 'sa' : return O_APPEND | O_CREAT | O_WRONLY | O_SYNC;
623 case 'sa+': return O_APPEND | O_CREAT | O_RDWR | O_SYNC;
/third_party/toybox/toys/other/
H A Ddevmem.c39 fd = xopen("/dev/mem", (writing ? O_RDWR : O_RDONLY) | O_SYNC); in devmem_main()
/third_party/ltp/testcases/kernel/fs/scsi/ltpfs/
H A Dmain.c101 open("/tmp/testfile", O_CREAT | O_RDWR | O_SYNC | FASYNC, in main()
542 if ((fileHandle = open(fname, O_RDONLY | O_SYNC | O_ASYNC)) < 0) { in open_read_close()
548 if ((fileHandle2 = open(fname, O_RDONLY | O_SYNC | O_ASYNC)) < 0) { in open_read_close()

Completed in 8 milliseconds

12345