HomeSort by relevance Sort by last modified time
    Searched defs:fdatasync (Results 1 - 17 of 17) sorted by null

  /bionic/libc/arch-arm/syscalls/
fdatasync.S 6 ENTRY(fdatasync) function
15 END(fdatasync)
  /bionic/libc/arch-mips/syscalls/
fdatasync.S 4 .globl fdatasync
6 .ent fdatasync
8 fdatasync: label
22 .end fdatasync
  /bionic/libc/arch-x86/syscalls/
fdatasync.S 6 ENTRY(fdatasync) function
21 END(fdatasync)
  /libcore/luni/src/main/native/
Portability.h 41 // TODO: Darwin appears to have an fdatasync syscall.
42 static inline int fdatasync(int fd) { return fsync(fd); } function
  /external/chromium_org/third_party/leveldatabase/src/port/
port_posix.h 67 // 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
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 90 @Override public void fdatasync(FileDescriptor fd) throws ErrnoException { method in class:BlockGuardOs
92 os.fdatasync(fd);
Os.java 46 public void fdatasync(FileDescriptor fd) throws ErrnoException; method in interface:Os
Posix.java 49 public native void fdatasync(FileDescriptor fd) throws ErrnoException; method in class:Posix
ForwardingOs.java 55 public void fdatasync(FileDescriptor fd) throws ErrnoException { os.fdatasync(fd); } method in class:ForwardingOs
  /external/bison/darwin-lib/
unistd.h 844 <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");
    [all...]
  /external/bison/linux-lib/
unistd.h 844 <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");
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
delegation_client.c 52 /* fdatasync does not exist on Android */
53 #define fdatasync fsync macro
57 * The function fdatasync seems to be absent of the header file
60 int fdatasync(int fd);
823 result=fdatasync(fileno(pFile));
    [all...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium.cc 68 int fdatasync(int fildes) { function in namespace:leveldb_env::__anon13650
513 if (fdatasync(fileno(file_)) && !error)
  /external/chromium_org/third_party/sqlite/src/src/
os_unix.c 3126 # define fdatasync macro
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 27282 # define fdatasync macro
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 28213 # define fdatasync macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 28231 # define fdatasync macro
    [all...]

Completed in 560 milliseconds