Lines Matching refs:dirSync
25096 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
25098 assert( dirSync==0 || dirSync==1 );
25099 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK;
36640 ** Delete the file located at zPath. If the dirSync argument is true,
36644 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
43262 ** Delete the file at zPath. If the dirSync argument is true, fsync()
43268 int dirSync /* If true, fsync() directory after deleting file */
43286 if( (dirSync & 1)!=0 ){
51895 ** Delete the file located at zPath. If the dirSync argument is true,
51899 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
213931 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
213933 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);