Searched defs:fdatasync (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dfdatasync.c12 int fdatasync(int fd) { function
/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_posix.h67 // Use fsync() on platforms without fdatasync()
68 #define fdatasync fsync macro
72 // fdatasync() was only introduced in API level 9 on Android. Use fsync()
74 #define fdatasync fsync macro
/external/bison/darwin-lib/
H A Dunistd.h844 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html>. */
846 _GL_FUNCDECL_SYS (fdatasync, int, (int fd));
848 _GL_CXXALIAS_SYS (fdatasync, int, (int fd));
849 _GL_CXXALIASWARN (fdatasync);
851 # undef fdatasync macro
853 _GL_WARN_ON_USE (fdatasync, "fdatasync is unportable - "
854 "use gnulib module fdatasync for portability");
/external/bison/linux-lib/
H A Dunistd.h844 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html>. */
846 _GL_FUNCDECL_SYS (fdatasync, int, (int fd));
848 _GL_CXXALIAS_SYS (fdatasync, int, (int fd));
849 _GL_CXXALIASWARN (fdatasync);
851 # undef fdatasync macro
853 _GL_WARN_ON_USE (fdatasync, "fdatasync is unportable - "
854 "use gnulib module fdatasync for portability");
/external/chromium_org/third_party/leveldatabase/
H A Denv_chromium_stdio.cc45 int fdatasync(int fildes) { function in namespace:leveldb_env::__anon11466
233 if (fdatasync(fileno(file_)) && !error)
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_proxy.cc623 int KernelProxy::fdatasync(int fd) { function in class:nacl_io::KernelProxy
/external/fio/os/windows/
H A Dposix.c681 int fdatasync(int fildes) function
/external/chromium_org/third_party/sqlite/src/src/
H A Dos_unix.c3120 ** We do not trust systems to provide a working fdatasync(). Some do.
3122 ** If you know that your system does support fdatasync() correctly,
3123 ** then simply compile with -Dfdatasync=fdatasync
3125 #if !defined(fdatasync) && !defined(__linux__)
3126 # define fdatasync fsync macro
3156 ** Ted Ts'o tells us that fdatasync() will also write the inode if the
3157 ** file size has changed. The only real difference between fdatasync()
3158 ** and fsync(), Ted tells us, is that fdatasync() will not flush the
3161 ** as far as SQLite is concerned, an fdatasync() is always adequate.
3162 ** So, we always use fdatasync() i
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c27261 ** We do not trust systems to provide a working fdatasync(). Some do.
27263 ** If you know that your system does support fdatasync() correctly,
27264 ** then simply compile with -Dfdatasync=fdatasync
27266 #if !defined(fdatasync) && !defined(__linux__)
27267 # define fdatasync fsync macro
27297 ** Ted Ts'o tells us that fdatasync() will also write the inode if the
27298 ** file size has changed. The only real difference between fdatasync()
27299 ** and fsync(), Ted tells us, is that fdatasync() will not flush the
27302 ** as far as SQLite is concerned, an fdatasync() is always adequate.
27303 ** So, we always use fdatasync() i
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c27642 # define fdatasync macro
[all...]
/external/sqlite/dist/
H A Dsqlite3.c27660 # define fdatasync macro
[all...]

Completed in 704 milliseconds