Lines Matching defs:dirSync
26270 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
26272 assert( dirSync==0 || dirSync==1 );
26273 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK;
38228 ** Delete the file located at zPath. If the dirSync argument is true,
38232 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
44895 ** Delete the file at zPath. If the dirSync argument is true, fsync()
44901 int dirSync /* If true, fsync() directory after deleting file */
44919 if( (dirSync & 1)!=0 ){
53489 ** Delete the file located at zPath. If the dirSync argument is true,
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);