Home
last modified time | relevance | path

Searched refs:dirSync (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/src/
H A Dos.c233 int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument
235 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete()
236 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; in sqlite3OsDelete()
H A Dtest_demovfs.c456 static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in demoDelete() argument
462 if( rc==0 && dirSync ){ in demoDelete()
H A Dtest_devsym.c262 static int devsymDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in devsymDelete() argument
263 return sqlite3OsDelete(g.pVfs, zPath, dirSync); in devsymDelete()
H A Dtest_vfstrace.c657 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vfstraceDelete() argument
662 pInfo->zVfsName, zPath, dirSync); in vfstraceDelete()
663 rc = pRoot->xDelete(pRoot, zPath, dirSync); in vfstraceDelete()
H A Dtest_osinst.c512 static int vfslogDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vfslogDelete() argument
516 rc = REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync); in vfslogDelete()
518 vfslog_call(pVfs, OS_DELETE, 0, t, rc, dirSync, 0); in vfslogDelete()
H A Dtest_journal.c733 static int jtDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in jtDelete() argument
743 return sqlite3OsDelete(g.pVfs, zPath, dirSync); in jtDelete()
H A Dtest6.c665 static int cfDelete(sqlite3_vfs *pCfVfs, const char *zPath, int dirSync){ in cfDelete() argument
667 return pVfs->xDelete(pVfs, zPath, dirSync); in cfDelete()
H A Dtest_vfs.c702 static int tvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in tvfsDelete() argument
708 Tcl_NewStringObj(zPath, -1), Tcl_NewIntObj(dirSync), 0, 0 in tvfsDelete()
713 rc = sqlite3OsDelete(PARENTVFS(pVfs), zPath, dirSync); in tvfsDelete()
H A Dmemdb.c585 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
H A Dtest_onefile.c686 static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in fsDelete() argument
H A Dos_kv.c849 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in kvvfsDelete() argument
H A Dos_unix.c6365 int dirSync /* If true, fsync() directory after deleting file */ in unixDelete() argument
6383 if( (dirSync & 1)!=0 ){ in unixDelete()
/sqlite-3.40.0/ext/misc/
H A Dvfslog.c643 static int vlogDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vlogDelete() argument
648 rc = REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync); in vlogDelete()
651 vlogLogPrint(pLog, tStart, tElapse, "DELETE", dirSync, -1, 0, rc); in vlogDelete()
H A Dappendvfs.c574 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument
575 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
H A Dvfsstat.c473 static int vstatDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vstatDelete() argument
475 rc = REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync); in vstatDelete()
H A Dcksumvfs.c723 static int cksmDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in cksmDelete() argument
724 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in cksmDelete()
H A Dmemvfs.c350 static int memDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in memDelete() argument
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c5122 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in rbuVfsDelete() argument
5124 return pRealVfs->xDelete(pRealVfs, zPath, dirSync); in rbuVfsDelete()