Lines Matching defs:dbFileSize

55661 **    * The dbSize, dbOrigSize and dbFileSize variables may not be trusted.
55681 ** transaction is not active). The dbOrigSize and dbFileSize variables
55711 ** * The dbSize, dbOrigSize and dbFileSize variables are all valid.
56041 ** dbSize, dbOrigSize, dbFileSize
56061 ** Variables dbOrigSize and dbFileSize are valid in states
56067 ** Throughout a write-transaction, dbFileSize contains the size of
56072 ** The only reason the dbFileSize variable is required is to suppress
56074 ** when a transaction is committed, the dbFileSize variable indicates
56078 ** dbFileSize is not used when rolling back a transaction. In this case
56089 ** write-transaction is opened (at the same time as dbFileSize and
56149 Pgno dbFileSize; /* Number of pages in the database file */
56423 assert( pPager->dbOrigSize==pPager->dbFileSize );
56443 assert( pPager->dbOrigSize==pPager->dbFileSize );
56509 "Size: dbsize=%d dbOrigSize=%d dbFileSize=%d\n"
56533 , (int)p->dbSize, (int)p->dbOrigSize, (int)p->dbFileSize
57622 }else if( rc==SQLITE_OK && bCommit && pPager->dbFileSize>pPager->dbSize ){
57933 if( pgno>pPager->dbFileSize ){
57934 pPager->dbFileSize = pgno;
58176 /* TODO: Is it safe to use Pager.dbFileSize here? */
58191 pPager->dbFileSize = nPage;
59921 ** If writing out a page causes the database file to grow, Pager.dbFileSize
59987 ** page caused the database file to grow, update dbFileSize.
59992 if( pgno>pPager->dbFileSize ){
59993 pPager->dbFileSize = pgno;
61481 pPager->dbFileSize = pPager->dbSize;
61875 assert( pPager->dbFileSize>0 );
62164 if( pPager->dbSize>pPager->dbFileSize ){