Searched refs:F_FULLFSYNC (Results 1 - 9 of 9) sorted by relevance
/third_party/ntfs-3g/libntfs-3g/ |
H A D | unix_io.c | 86 # ifndef F_FULLFSYNC in ntfs_fsync() 87 # error "Mac OS X: F_FULLFSYNC is not defined. Either you didn't include fcntl.h or you're using an older, unsupported version of Mac OS X (pre-10.3)." in ntfs_fsync() 92 * specific fcntl, F_FULLFSYNC. in ntfs_fsync() 94 ret = fcntl(fildes, F_FULLFSYNC, NULL); in ntfs_fsync()
|
/third_party/python/Modules/ |
H A D | fcntlmodule.c | 577 #ifdef F_FULLFSYNC in all_ins() 578 if (PyModule_AddIntMacro(m, F_FULLFSYNC)) return -1; in all_ins()
|
H A D | mmapmodule.c | 1286 (void)fcntl(fd, F_FULLFSYNC); in new_mmap_object()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | os_unix.c | 459 #ifdef F_FULLFSYNC in os_fdatasync() 461 return fcntl(fileno(stream), F_FULLFSYNC); in os_fdatasync() 462 #else /* F_FULLFSYNC */ in os_fdatasync() 464 #endif /* F_FULLFSYNC */ in os_fdatasync()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | os_unix.c | 470 #ifdef F_FULLFSYNC in os_fdatasync() 472 return fcntl(fileno(stream), F_FULLFSYNC); in os_fdatasync() 473 #else /* F_FULLFSYNC */ in os_fdatasync() 475 #endif /* F_FULLFSYNC */ in os_fdatasync()
|
/third_party/libuv/src/unix/ |
H A D | fs.c | 205 * which do, according to recent man pages. F_FULLFSYNC is Apple's equivalent in uv__fs_fsync() 206 * for flushing buffered data to permanent storage. If F_FULLFSYNC is not in uv__fs_fsync() 213 r = fcntl(req->file, F_FULLFSYNC); in uv__fs_fsync()
|
/third_party/node/deps/uv/src/unix/ |
H A D | fs.c | 185 * which do, according to recent man pages. F_FULLFSYNC is Apple's equivalent in uv__fs_fsync() 186 * for flushing buffered data to permanent storage. If F_FULLFSYNC is not in uv__fs_fsync() 193 r = fcntl(req->file, F_FULLFSYNC); in uv__fs_fsync()
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 3098 pub const F_FULLFSYNC: ::c_int = 51; consts
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | [all...] |
Completed in 156 milliseconds