HomeSort by relevance Sort by last modified time
    Searched full:fsync (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /bionic/libc/arch-arm/syscalls/
fsync.S 5 .type fsync, #function
6 .globl fsync
10 fsync: label
  /bionic/libc/arch-x86/syscalls/
fsync.S 5 .type fsync, @function
6 .globl fsync
9 fsync: label
  /bionic/libc/arch-sh/syscalls/
fsync.S 5 .type fsync, @function
6 .globl fsync
9 fsync: label
  /libcore/luni/src/main/native/
java_io_FileDescriptor.cpp 28 int rc = fsync(fd);
31 * If fd is a socket, then fsync(fd) is defined to fail with
33 * TODO: Look into not bothering to call fsync() at all if
org_apache_harmony_luni_platform_OSFileSystem.cpp 356 LOGW("fdatasync(2) unimplemented on Android - doing fsync(2)"); // http://b/2667481
358 int rc = fsync(fd);
359 // int rc = metadataToo ? fsync(fd) : fdatasync(fd);
489 NATIVE_METHOD(OSFileSystem, fsync, "(IZ)V"),
  /external/e2fsprogs/lib/ext2fs/
flushb.c 60 if (fsync (fd) == -1)
  /system/extras/tests/sdcard/
sysutil.h 45 // .fsyncAnddropCaches Call fsync an drop page/dentries/inodes caches.
113 // Fsync the given fd and drop caches. Fsync is needed because dirty
testcase.cpp 186 return mSync == NO_SYNC ? "disabled" : (mSync == FSYNC ? "fsync" : "sync");
testcase.h 46 enum Sync {NO_SYNC, FSYNC, SYNC};
157 StopWatch *mSyncTimer; // Used to time the sync/fsync calls.
sdcard_perf_test.cpp 137 " -s --sync: fsync|sync Use fsync or sync in write test. Default: no sync call.\n"
247 } else if (strcmp("fsync", optarg) == 0) {
248 testCase->setSync(TestCase::FSYNC);
467 if (TestCase::FSYNC == testCase->sync())
470 fsync(fd);
sysutil.cpp 401 fsync(fd);
402 fsync(fd);
  /bootable/diskinstaller/libdiskconfig/
diskutils.c 102 fsync(dst_fd);
  /system/core/libdiskconfig/
diskutils.c 102 fsync(dst_fd);
  /external/qemu/
cutils.c 123 * fdatasync and have to fall back to fsync.
130 return fsync(fd);
qemu-common.h 53 #define fsync _commit macro
  /libcore/luni/src/main/java/org/apache/harmony/luni/platform/
IFileSystem.java 94 public void fsync(int fileDescriptor, boolean metadata) throws IOException; method in interface:IFileSystem
OSFileSystem.java 83 public native void fsync(int fd, boolean metadata) throws IOException; method in class:OSFileSystem
  /external/webkit/WebCore/platform/sql/
SQLiteDatabase.cpp 94 void SQLiteDatabase::setFullsync(bool fsync)
96 if (fsync)
  /libcore/dalvik/src/main/java/dalvik/system/
BlockGuard.java 213 public void fsync(int fileDescriptor, boolean metadata) throws IOException { method in class:BlockGuard.WrappedFileSystem
215 mFileSystem.fsync(fileDescriptor, metadata);
  /bionic/libc/include/
unistd.h 143 extern int fsync(int);
  /development/ndk/platforms/android-3/include/
unistd.h 136 extern int fsync(int);
  /development/ndk/platforms/android-8/include/
unistd.h 140 extern int fsync(int);
  /development/ndk/platforms/android-9/include/
unistd.h 143 extern int fsync(int);
  /external/libpcap/lbl/
os-sunos4.h 84 int fsync(int);
  /external/tcpdump/lbl/
os-sunos4.h 84 int fsync(int);

Completed in 802 milliseconds

1 2 3 4 5 6 7 8 9