Searched refs:dirSync (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 3868 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument 3869 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
|
D | sqlite3.c | 21029 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument 21031 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete() 21032 return pVfs->xDelete(pVfs, zPath, dirSync); in sqlite3OsDelete() 36784 int dirSync /* If true, fsync() directory after deleting file */ 36802 if( (dirSync & 1)!=0 ){ 177398 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 177400 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
|
/external/sqlite/dist/ |
D | shell.c | 3874 static int apndDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in apndDelete() argument 3875 return ORIGVFS(pVfs)->xDelete(ORIGVFS(pVfs), zPath, dirSync); in apndDelete()
|
D | sqlite3.c | 21029 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ in sqlite3OsDelete() argument 21031 assert( dirSync==0 || dirSync==1 ); in sqlite3OsDelete() 21032 return pVfs->xDelete(pVfs, zPath, dirSync); in sqlite3OsDelete() 36800 int dirSync /* If true, fsync() directory after deleting file */ 36818 if( (dirSync & 1)!=0 ){ 177426 static int rbuVfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ 177428 return pRealVfs->xDelete(pRealVfs, zPath, dirSync);
|