Home | History | Annotate | Download | only in dist

Lines Matching refs:full_fsync

25922 static int full_fsync(int fd, int fullSync, int dataOnly){
26024 rc = full_fsync(pFile->h, isFullsync, isDataOnly);
26028 return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath);
26035 /* The directory sync is only attempted if full_fsync is
26036 ** turned off or unavailable. If a full_fsync occurred above,
26039 if( (!HAVE_FULLFSYNC || !isFullsync) && full_fsync(pFile->dirfd,0,0) ){