Searched defs:zJournal (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest2.c104 char *zJournal = sqlite3_mprintf("%s-journal", DB_FILE); local
106 unlink(zJournal);
107 sqlite3_free(zJournal);
H A Dthreadtest1.c269 char *zJournal = sqlite3_mprintf("%s-journal", zDb); local
271 unlink(zJournal);
272 free(zJournal);
H A Dthreadtest3.c985 const char *zJournal = "PRAGMA journal_mode = WAL"; local
986 if( iArg ){ zJournal = "PRAGMA journal_mode = DELETE"; }
994 sql_script(&err, &db, zJournal);
/external/chromium_org/third_party/sqlite/src/src/
H A Djournal.c43 const char *zJournal; /* Name of the journal file */ member in struct:JournalFile
55 rc = sqlite3OsOpen(p->pVfs, p->zJournal, pReal, p->flags, 0);
215 p->zJournal = zName;
H A Dtest_journal.c278 ** Parameter zJournal is the name of a journal file that is currently
291 static jt_file *locateDatabaseHandle(const char *zJournal){ argument
295 int nName = strlen(zJournal) - strlen("-journal");
298 && 0==memcmp(pMain->zName, zJournal, nName)
H A Dpager.c670 char *zJournal; /* Name of the journal file */ member in struct:Pager
1951 rc = sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0);
2378 char *zJournal; /* Pointer to one journal within MJ file */ local
2413 zJournal = zMasterJournal;
2414 while( (zJournal-zMasterJournal)<nMasterJournal ){
2416 rc = sqlite3OsAccess(pVfs, zJournal, SQLITE_ACCESS_EXISTS, &exists);
2427 rc = sqlite3OsOpen(pVfs, zJournal, pJournal, flags, 0);
2444 zJournal += (sqlite3Strlen30(zJournal)+1);
4383 nPathname + 8 + 1 /* zJournal */
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c37113 char *zJournal; /* Name of the journal file */ member in struct:Pager
38821 char *zJournal; /* Pointer to one journal within MJ file */ local
69118 const char *zJournal; /* Name of the journal file */ member in struct:JournalFile
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c39096 char *zJournal; /* Name of the journal file */ member in struct:Pager
40794 char *zJournal; /* Pointer to one journal within MJ file */ local
72570 const char *zJournal; /* Name of the journal file */ member in struct:JournalFile
[all...]
/external/sqlite/dist/
H A Dsqlite3.c39124 char *zJournal; /* Name of the journal file */ member in struct:Pager
40822 char *zJournal; /* Pointer to one journal within MJ file */ local
72598 const char *zJournal; /* Name of the journal file */ member in struct:JournalFile
[all...]

Completed in 525 milliseconds