Searched refs:dirSync (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 10102 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument 10103 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete() 17146 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vfstraceDelete() argument 17152 pInfo->zVfsName, zPath, dirSync); in vfstraceDelete() 17153 rc = pRoot->xDelete(pRoot, zPath, dirSync); in vfstraceDelete()
|
| H A D | sqlite3.c | 26769 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument 26771 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete() 26772 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; in sqlite3OsDelete() 38717 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in kvvfsDelete() argument 45380 int dirSync /* If true, fsync() directory after deleting file */ in unixDelete() argument 45398 if( (dirSync & 1)!=0 ){ in unixDelete() 54442 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 226467 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 226469 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
|