Searched refs:mxPage (Results 1 - 4 of 4) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/libsqlite/tool/
H A Dshowdb.c18 static int mxPage = 0; variable
58 mxPage = sbuf.st_size/pagesize + 1;
61 for(i=1; i<=mxPage; i++) print_page(i);
69 iEnd = mxPage;
75 if( iStart<1 || iEnd<iStart || iEnd>mxPage ){
78 mxPage);
H A Dshowjournal.c18 static int mxPage = 0; variable
/opensolaris-onvv-gate/usr/src/lib/libsqlite/src/
H A Dpager.c176 int mxPage; /* Maximum number of pages to hold in cache */ member in struct:Pager
843 ** The maximum number is the absolute value of the mxPage parameter.
844 ** If mxPage is negative, the noSync flag is also set. noSync bypasses
850 void sqlitepager_set_cachesize(Pager *pPager, int mxPage){ argument
851 if( mxPage>=0 ){
856 mxPage = -mxPage;
858 if( mxPage>10 ){
859 pPager->mxPage = mxPage;
925 sqlitepager_open( Pager **ppPager, const char *zFilename, int mxPage, int nExtra, int useJournal ) argument
[all...]
H A Dbtree.c751 ** value of mxPage. If mxPage is negative, the pager will
762 static int fileBtreeSetCacheSize(Btree *pBt, int mxPage){ argument
763 sqlitepager_set_cachesize(pBt->pPager, mxPage);

Completed in 106 milliseconds