Searched refs:dirSync (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 9273 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument 9274 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
|
H A D | sqlite3.c | 26270 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument 26272 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete() 26273 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; in sqlite3OsDelete() 38232 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 44901 int dirSync /* If true, fsync() directory after deleting file */ 44919 if( (dirSync & 1)!=0 ){ 53493 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 223286 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 223288 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
|