Home
last modified time | relevance | path

Searched refs:page1 (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dscrub.c78 u8 *page1; /* Content of page 1 */ member
393 a = p->page1; in scrubBackupBtree()
522 s.page1 = scrubBackupRead(&s, 1, 0); in sqlite3_scrub_backup()
523 if( s.page1==0 ) goto scrub_abort; in sqlite3_scrub_backup()
524 s.szUsable = s.szPage - s.page1[20]; in sqlite3_scrub_backup()
527 n = scrubBackupInt32(&s.page1[36]); in sqlite3_scrub_backup()
528 i = scrubBackupInt32(&s.page1[32]); in sqlite3_scrub_backup()
532 n = scrubBackupInt32(&s.page1[52]); in sqlite3_scrub_backup()
568 sqlite3_free(s.page1); in sqlite3_scrub_backup()
/sqlite-3.40.0/test/
H A Dpageropt.test183 # page1, the root page of table t1, and an 11 page overflow chain.
195 # to be read, together with page1 and the root of the t1 table. 12
196 # reads total. But only page1, the t1 root, and the trunk of the
H A Dmalloc5.test367 # freed is page1 of db2. Because there is an open transaction, the
/sqlite-3.40.0/src/
H A Dbtree.c3199 u8 *page1 = pPage1->aData; in lockBtree() local
3204 if( memcmp(page1, zMagicHeader, 16)!=0 ){ in lockBtree()
3209 if( page1[18]>1 ){ in lockBtree()
3212 if( page1[19]>1 ){ in lockBtree()
3216 if( page1[18]>2 ){ in lockBtree()
3219 if( page1[19]>2 ){ in lockBtree()
3255 if( memcmp(&page1[21], "\100\040\040",3)!=0 ){ in lockBtree()
3261 pageSize = (page1[16]<<8) | (page1[17]<<16); in lockBtree()
3279 usableSize = pageSize - page1[20]; in lockBtree()
3312 pBt->autoVacuum = (get4byte(&page1[36 + 4*4])?1:0); in lockBtree()
[all …]