Searched refs:dirSync (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 12058 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument 12059 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete() 19161 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vfstraceDelete() argument 19167 pInfo->zVfsName, zPath, dirSync); in vfstraceDelete() 19168 rc = pRoot->xDelete(pRoot, zPath, dirSync); in vfstraceDelete()
|
| H A D | sqlite3.c | 27524 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument 27526 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete() 27527 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; in sqlite3OsDelete() 40046 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in kvvfsDelete() argument 47033 int dirSync /* If true, fsync() directory after deleting file */ in unixDelete() argument 47051 if( (dirSync & 1)!=0 ){ in unixDelete() 55934 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 231507 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument 231509 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
|