Searched refs:zJournal (Results 1 – 9 of 9) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | threadtest2.c | 104 char *zJournal = sqlite3_mprintf("%s-journal", DB_FILE); in main() local 106 unlink(zJournal); in main() 107 sqlite3_free(zJournal); in main()
|
| H A D | crash8.test | 158 set zJournal [read_file test.db-journal] 165 binary scan [string range $zJournal 20 23] I nSector 170 set zJournal2 [string replace $zJournal 20 23 [binary format I 513]] 179 set zJournal2 [string replace $zJournal 20 23 [binary format I 0x2000000]] 187 set zJournal2 [string replace $zJournal 20 23 [binary format I 256]] 196 set zJournal2 [string replace $zJournal 24 27 [binary format I 513]] 206 set zJournal2 [string replace $zJournal 24 27 [binary format I $big]] 214 set zJournal2 [string replace $zJournal 24 27 [binary format I 256]] 225 puts -nonewline $fd $zJournal
|
| H A D | threadtest1.c | 269 char *zJournal = sqlite3_mprintf("%s-journal", zDb); in main() local 271 unlink(zJournal); in main() 272 free(zJournal); in main()
|
| H A D | threadtest3.c | 1072 const char *zJournal = "PRAGMA journal_mode = WAL"; in walthread2_thread() local 1073 if( iArg ){ zJournal = "PRAGMA journal_mode = DELETE"; } in walthread2_thread() 1081 sql_script(&err, &db, zJournal); in walthread2_thread()
|
| /sqlite-3.40.0/src/ |
| H A D | memjournal.c | 79 const char *zJournal; /* Name of the journal file */ member 151 rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0); in memjrnlCreateFile() 383 p->zJournal = zName; in sqlite3JournalOpen()
|
| H A D | pager.c | 688 char *zJournal; /* Name of the journal file */ member 2533 zJournal = zSuperJournal; in pager_delsuper() 2534 while( (zJournal-zSuperJournal)<nSuperJournal ){ in pager_delsuper() 2567 zJournal += (sqlite3Strlen30(zJournal)+1); in pager_delsuper() 2944 nPlayback, pPager->zJournal); in pager_playback() 4850 pPager->zJournal = (char*)pPtr; in sqlite3PagerOpen() 4854 sqlite3FileSuffix3(zFilename,pPager->zJournal); in sqlite3PagerOpen() 4855 pPtr = (u8*)(pPager->zJournal + sqlite3Strlen30(pPager->zJournal)+1); in sqlite3PagerOpen() 4858 pPager->zJournal = 0; in sqlite3PagerOpen() 5128 sqlite3OsDelete(pVfs, pPager->zJournal, 0); in hasHotJournal() [all …]
|
| H A D | test_journal.c | 292 static jt_file *locateDatabaseHandle(const char *zJournal, int noLock){ in locateDatabaseHandle() argument 296 int nName = (int)(strlen(zJournal) - strlen("-journal")); in locateDatabaseHandle() 299 && 0==memcmp(pMain->zName, zJournal, nName) in locateDatabaseHandle()
|
| H A D | main.c | 4515 const char *zJournal, in sqlite3_create_filename() argument 4523 nByte = strlen(zDatabase) + strlen(zJournal) + strlen(zWal) + 10; in sqlite3_create_filename() 4536 p = appendText(p, zJournal); in sqlite3_create_filename()
|
| H A D | sqlite.h.in | 3837 const char *zJournal,
|