Searched refs:fdatasync (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dfdatasync.c12 int fdatasync(int fd) { function
/external/chromium_org/base/test/
H A Dtest_file_util_linux.cc21 if (fdatasync(fd.get()) != 0)
/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/sqlite/dist/
H A DAndroid.mk35 -Dfdatasync=fdatasync \
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmock_kernel_proxy.h35 MOCK_METHOD1(fdatasync, int(int));
H A Dkernel_wrap_test.cc259 TEST_F(KernelWrapTest, fdatasync) {
260 EXPECT_CALL(mock, fdatasync(kDummyInt)).WillOnce(Return(0))
263 EXPECT_EQ(0, fdatasync(kDummyInt));
264 EXPECT_EQ(-1, fdatasync(kDummyInt));
/external/fio/
H A Dconfigure727 # fdatasync() probe
728 fdatasync="no"
734 return fdatasync(0);
737 if compile_prog "" "" "fdatasync"; then
738 fdatasync="yes"
740 echo "fdatasync $fdatasync"
1230 if test "$fdatasync" = "yes" ; then
H A Dioengines.c538 ret = fdatasync(io_u->file->fd);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_bionic.cc124 OP(fdatasync); \
176 int WRAP(fdatasync)(int fd) NOTHROW {
366 CHECK_REAL(fdatasync);
367 return REAL(fdatasync)(fd);
H A Dkernel_wrap_newlib.cc70 OP(dev_fdio, fdatasync); \
152 int WRAP(fdatasync)(int fd) {
H A Dkernel_proxy.h116 virtual int fdatasync(int fd);
H A Dkernel_intercept.cc252 return s_state.kp->fdatasync(fd);
/external/fio/os/
H A Dos-mac.h166 * For some reason, there's no header definition for fdatasync(), even
169 extern int fdatasync(int fd);
H A Dos-windows.h105 int fdatasync(int fildes);
/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/lib/
H A Dunistd.in.h532 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html>. */
534 _GL_FUNCDECL_SYS (fdatasync, int, (int fd));
536 _GL_CXXALIAS_SYS (fdatasync, int, (int fd));
537 _GL_CXXALIASWARN (fdatasync);
539 # undef fdatasync
541 _GL_WARN_ON_USE (fdatasync, "fdatasync is unportable - "
542 "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/ltrace/etc/
H A Dsyscalls.conf51 int fdatasync(int);
/external/chromium_org/third_party/sqlite/src/
H A Dconfigure.ac130 AC_CHECK_FUNCS([usleep fdatasync localtime_r gmtime_r localtime_s])
590 # that use "fdatasync()" function.
592 AC_SEARCH_LIBS(fdatasync, [rt])
/external/fio/engines/
H A Dsolarisaio.c130 if (fdatasync(f->fd) < 0)
/external/qemu/util/
H A Dcutils.c155 * fdatasync and have to fall back to fsync.
160 return fdatasync(fd);
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dnonsfi_sandbox_sigsys_unittest.cc124 RESTRICT_SYSCALL_DEATH_TEST(fdatasync);
/external/chromium_org/third_party/leveldatabase/src/util/
H A Denv_posix.cc252 fdatasync(fileno(file_)) != 0) {
/external/fio/os/windows/
H A Dposix.c681 int fdatasync(int fildes) function

Completed in 718 milliseconds

12