| /sqlite-3.40.0/src/ |
| H A D | os.c | 233 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 D | test_demovfs.c | 456 static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in demoDelete() argument 462 if( rc==0 && dirSync ){ in demoDelete()
|
| H A D | test_devsym.c | 262 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 D | test_vfstrace.c | 657 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 D | test_osinst.c | 512 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 D | test_journal.c | 733 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 D | test6.c | 665 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 D | test_vfs.c | 702 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 D | memdb.c | 585 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
|
| H A D | test_onefile.c | 686 static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in fsDelete() argument
|
| H A D | os_kv.c | 849 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in kvvfsDelete() argument
|
| H A D | os_unix.c | 6365 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 D | vfslog.c | 643 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 D | appendvfs.c | 574 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 D | vfsstat.c | 473 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 D | cksumvfs.c | 723 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 D | memvfs.c | 350 static int memDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in memDelete() argument
|
| /sqlite-3.40.0/ext/rbu/ |
| H A D | sqlite3rbu.c | 5122 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in rbuVfsDelete() argument 5124 return pRealVfs->xDelete(pRealVfs, zPath, dirSync); in rbuVfsDelete()
|