Home
last modified time | relevance | path

Searched refs:syncDir (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_multiplex.c614 int syncDir in multiplexDelete() argument
618 rc = pOrigVfs->xDelete(pOrigVfs, zName, syncDir); in multiplexDelete()
637 rc = pOrigVfs->xDelete(pOrigVfs, z, syncDir); in multiplexDelete()
647 rc = pOrigVfs->xDelete(pOrigVfs, z, syncDir); in multiplexDelete()
H A Dtest_devsym.c63 static int devsymDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dtest_quota.c489 int syncDir /* Do a directory sync after deleting */ in quotaDelete() argument
497 rc = pOrigVfs->xDelete(pOrigVfs, zName, syncDir); in quotaDelete()
H A Dtest_journal.c152 static int jtDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dtest_onefile.c164 static int fsDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dos_kv.c83 static int kvvfsDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dtest_vfstrace.c162 static int vfstraceDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dtest_osinst.c166 static int vfslogDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dos_win.c5339 int syncDir /* Not used on win32 */ argument
5347 UNUSED_PARAMETER(syncDir);
5350 OSTRACE(("DELETE name=%s, syncDir=%d\n", zFilename, syncDir));
H A Dtest_vfs.c182 static int tvfsDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dsqlite.h.in1466 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-opfs-async-proxy.js409 xDeleteNoWait: async function(filename, syncDir = 0, recursive = false){ argument
429 if(0x1234 !== syncDir) break;
/sqlite-3.40.0/ext/misc/
H A Dmemvfs.c93 static int memDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dappendvfs.c161 static int apndDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dvfsstat.c171 static int vstatDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dcksumvfs.c231 static int cksmDelete(sqlite3_vfs*, const char *zName, int syncDir);
H A Dvfslog.c115 static int vlogDelete(sqlite3_vfs*, const char *zName, int syncDir);
/sqlite-3.40.0/ext/async/
H A Dsqlite3async.c1176 static int asyncDelete(sqlite3_vfs *pAsyncVfs, const char *z, int syncDir){ in asyncDelete() argument
1178 return addNewAsyncWrite(0, ASYNC_DELETE, syncDir, (int)strlen(z)+1, z); in asyncDelete()