Searched refs:dirSync (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_devsym.c284 ** Delete the file located at zPath. If the dirSync argument is true,
288 static int devsymDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
289 return sqlite3OsDelete(g.pVfs, zPath, dirSync);
H A Dos.c143 int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
144 return pVfs->xDelete(pVfs, zPath, dirSync);
H A Dtest_demovfs.c450 ** Delete the file identified by argument zPath. If the dirSync parameter
454 static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
460 if( rc==0 && dirSync ){
H A Dtest6.c636 static int cfDelete(sqlite3_vfs *pCfVfs, const char *zPath, int dirSync){ argument
638 return pVfs->xDelete(pVfs, zPath, dirSync);
H A Dtest_journal.c722 ** Delete the file located at zPath. If the dirSync argument is true,
726 static int jtDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
736 return sqlite3OsDelete(g.pVfs, zPath, dirSync);
H A Dtest_osinst.c499 ** Delete the file located at zPath. If the dirSync argument is true,
503 static int vfslogDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
507 rc = REALVFS(pVfs)->xDelete(REALVFS(pVfs), zPath, dirSync);
509 vfslog_call(pVfs, OS_DELETE, 0, t, rc, dirSync, 0);
H A Dtest_vfstrace.c534 ** Delete the file located at zPath. If the dirSync argument is true,
538 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
543 pInfo->zVfsName, zPath, dirSync);
544 rc = pRoot->xDelete(pRoot, zPath, dirSync);
H A Dtest_vfs.c603 ** Delete the file located at zPath. If the dirSync argument is true,
607 static int tvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
613 Tcl_NewStringObj(zPath, -1), Tcl_NewIntObj(dirSync), 0
618 rc = sqlite3OsDelete(PARENTVFS(pVfs), zPath, dirSync);
H A Dtest_onefile.c681 ** Delete the file located at zPath. If the dirSync argument is true,
685 static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
H A Dos_unix.c5160 ** Delete the file at zPath. If the dirSync argument is true, fsync()
5166 int dirSync /* If true, fsync() directory after deleting file */
5175 if( dirSync ){
/external/sqlite/dist/orig/
H A Dsqlite3.c15932 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
15934 assert( dirSync==0 || dirSync==1 );
15935 return pVfs->xDelete(pVfs, zPath, dirSync);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15932 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
15934 assert( dirSync==0 || dirSync==1 );
15935 return pVfs->xDelete(pVfs, zPath, dirSync);
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c14087 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
14088 return pVfs->xDelete(pVfs, zPath, dirSync);
[all...]

Completed in 940 milliseconds