HomeSort by relevance Sort by last modified time
    Searched refs:zJournal (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/sqlite/src/test/
threadtest2.c 104 char *zJournal = sqlite3_mprintf("%s-journal", DB_FILE);
106 unlink(zJournal);
107 sqlite3_free(zJournal);
threadtest1.c 269 char *zJournal = sqlite3_mprintf("%s-journal", zDb);
271 unlink(zJournal);
272 free(zJournal);
threadtest3.c 985 const char *zJournal = "PRAGMA journal_mode = WAL";
986 if( iArg ){ zJournal = "PRAGMA journal_mode = DELETE"; }
994 sql_script(&err, &db, zJournal);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
journal.c 43 const char *zJournal; /* Name of the journal file */
55 rc = sqlite3OsOpen(p->pVfs, p->zJournal, pReal, p->flags, 0);
215 p->zJournal = zName;
pager.c 670 char *zJournal; /* Name of the journal file */
    [all...]
test_journal.c 278 ** Parameter zJournal is the name of a journal file that is currently
291 static jt_file *locateDatabaseHandle(const char *zJournal){
295 int nName = strlen(zJournal) - strlen("-journal");
298 && 0==memcmp(pMain->zName, zJournal, nName)
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 7199 milliseconds