Searched defs:mxPage (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dpcache.c566 void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){ argument
567 pCache->nMax = mxPage;
569 sqlite3GlobalConfig.pcache.xCachesize(pCache->pCache, mxPage);
H A Dwal.c1634 u32 mxPage; /* Max database page to write */ local
1660 mxPage = pWal->hdr.nPage;
1693 i64 nReq = ((i64)mxPage * szPage);
1704 if( iFrame<=nBackfill || iFrame>mxSafeFrame || iDbpage>mxPage ) continue;
H A Dpager.c3303 void sqlite3PagerSetCachesize(Pager *pPager, int mxPage){ argument
3304 sqlite3PcacheSetCachesize(pPager->pPCache, mxPage);
3541 ** Attempt to set the maximum database page count if mxPage is positive.
3542 ** Make no changes if mxPage is zero or negative. And never reduce the
3545 ** Regardless of mxPage, return the current maximum page count.
3547 int sqlite3PagerMaxPageCount(Pager *pPager, int mxPage){ argument
3548 if( mxPage>0 ){
3549 pPager->mxPgno = mxPage;
H A Dbtree.c2070 ** value of mxPage. If mxPage is negative, the pager will
2081 int sqlite3BtreeSetCacheSize(Btree *p, int mxPage){ argument
2085 sqlite3PagerSetCachesize(pBt->pPager, mxPage);
2199 ** Set the maximum page count for a database if mxPage is positive.
2200 ** No changes are made if mxPage is 0 or negative.
2201 ** Regardless of the value of mxPage, return the maximum page count.
2203 int sqlite3BtreeMaxPageCount(Btree *p, int mxPage){ argument
2206 n = sqlite3PagerMaxPageCount(p->pBt->pPager, mxPage);
4760 Pgno mxPage; /* Tota local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dshowdb.c16 static int mxPage = 0; /* Last page number */ variable
492 mxPage = sbuf.st_size/pagesize;
493 printf("Available pages: 1..%d\n", mxPage);
496 for(i=1; i<=mxPage; i++) print_page(i);
512 iEnd = mxPage;
544 if( iStart<1 || iEnd<iStart || iEnd>mxPage ){
547 mxPage);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c34906 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
39746 sqlite3PagerSetCachesize(Pager *pPager, int mxPage) argument
39990 sqlite3PagerMaxPageCount(Pager *pPager, int mxPage) argument
45093 u32 mxPage; /* Max database page to write */ local
49379 sqlite3BtreeSetCacheSize(Btree *p, int mxPage) argument
49501 sqlite3BtreeMaxPageCount(Btree *p, int mxPage) argument
52058 Pgno mxPage; /* Total size of the database file */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c36812 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
41728 sqlite3PagerSetCachesize(Pager *pPager, int mxPage) argument
41983 sqlite3PagerMaxPageCount(Pager *pPager, int mxPage) argument
47001 u32 mxPage; /* Max database page to write */ local
51458 sqlite3BtreeSetCacheSize(Btree *p, int mxPage) argument
51580 sqlite3BtreeMaxPageCount(Btree *p, int mxPage) argument
54204 Pgno mxPage; /* Total size of the database file */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c36840 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
41756 sqlite3PagerSetCachesize(Pager *pPager, int mxPage) argument
42011 sqlite3PagerMaxPageCount(Pager *pPager, int mxPage) argument
47029 u32 mxPage; /* Max database page to write */ local
51486 sqlite3BtreeSetCacheSize(Btree *p, int mxPage) argument
51608 sqlite3BtreeMaxPageCount(Btree *p, int mxPage) argument
54232 Pgno mxPage; /* Total size of the database file */ local
[all...]

Completed in 523 milliseconds