Home | History | Annotate | Download | only in dist

Lines Matching refs:dbFileSize

48146 **    * The dbSize, dbOrigSize and dbFileSize variables may not be trusted.
48166 ** transaction is not active). The dbOrigSize and dbFileSize variables
48196 ** * The dbSize, dbOrigSize and dbFileSize variables are all valid.
48525 ** dbSize, dbOrigSize, dbFileSize
48545 ** Variables dbOrigSize and dbFileSize are valid in states
48551 ** Throughout a write-transaction, dbFileSize contains the size of
48556 ** The only reason the dbFileSize variable is required is to suppress
48558 ** when a transaction is committed, the dbFileSize variable indicates
48562 ** dbFileSize is not used when rolling back a transaction. In this case
48573 ** write-transaction is opened (at the same time as dbFileSize and
48632 Pgno dbFileSize; /* Number of pages in the database file */
48895 assert( pPager->dbOrigSize==pPager->dbFileSize );
48915 assert( pPager->dbOrigSize==pPager->dbFileSize );
48977 "Size: dbsize=%d dbOrigSize=%d dbFileSize=%d\n"
49001 , (int)p->dbSize, (int)p->dbOrigSize, (int)p->dbFileSize
50087 }else if( rc==SQLITE_OK && bCommit && pPager->dbFileSize>pPager->dbSize ){
50400 if( pgno>pPager->dbFileSize ){
50401 pPager->dbFileSize = pgno;
50635 /* TODO: Is it safe to use Pager.dbFileSize here? */
50649 pPager->dbFileSize = nPage;
52328 ** If writing out a page causes the database file to grow, Pager.dbFileSize
52394 ** page caused the database file to grow, update dbFileSize.
52399 if( pgno>pPager->dbFileSize ){
52400 pPager->dbFileSize = pgno;
53814 pPager->dbFileSize = pPager->dbSize;
54208 assert( pPager->dbFileSize>0 );
54485 if( pPager->dbSize>pPager->dbFileSize ){