Searched refs:dirSync (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 12027 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument 12028 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete() 19123 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in vfstraceDelete() argument 19129 pInfo->zVfsName, zPath, dirSync); in vfstraceDelete() 19130 rc = pRoot->xDelete(pRoot, zPath, dirSync); in vfstraceDelete()
|
| H A D | sqlite3.c | 27494 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument 27496 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete() 27497 return pVfs->xDelete!=0 ? pVfs->xDelete(pVfs, zPath, dirSync) : SQLITE_OK; in sqlite3OsDelete() 40016 static int kvvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in kvvfsDelete() argument 47003 int dirSync /* If true, fsync() directory after deleting file */ in unixDelete() argument 47021 if( (dirSync & 1)!=0 ){ in unixDelete() 55889 static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 231113 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument 231115 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
|