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

/external/chromium_org/third_party/sqlite/src/src/
H A Dpcache.c568 void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){ argument
569 pCache->nMax = mxPage;
571 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.c3293 void sqlite3PagerSetCachesize(Pager *pPager, int mxPage){ argument
3294 sqlite3PcacheSetCachesize(pPager->pPCache, mxPage);
3531 ** Attempt to set the maximum database page count if mxPage is positive.
3532 ** Make no changes if mxPage is zero or negative. And never reduce the
3535 ** Regardless of mxPage, return the current maximum page count.
3537 int sqlite3PagerMaxPageCount(Pager *pPager, int mxPage){ argument
3538 if( mxPage>0 ){
3539 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.c34893 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
39723 sqlite3PagerSetCachesize(Pager *pPager, int mxPage) argument
39967 sqlite3PagerMaxPageCount(Pager *pPager, int mxPage) argument
44914 u32 mxPage; /* Max database page to write */ local
49200 sqlite3BtreeSetCacheSize(Btree *p, int mxPage) argument
49322 sqlite3BtreeMaxPageCount(Btree *p, int mxPage) argument
51879 Pgno mxPage; /* Total size of the database file */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c38532 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
43627 sqlite3PagerSetCachesize(Pager *pPager, int mxPage) argument
43920 sqlite3PagerMaxPageCount(Pager *pPager, int mxPage) argument
49151 u32 mxPage; /* Max database page to write */ local
53700 sqlite3BtreeSetCacheSize(Btree *p, int mxPage) argument
53852 sqlite3BtreeMaxPageCount(Btree *p, int mxPage) argument
56543 Pgno mxPage; /* Total size of the database file */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c38552 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
43647 sqlite3PagerSetCachesize(Pager *pPager, int mxPage) argument
43940 sqlite3PagerMaxPageCount(Pager *pPager, int mxPage) argument
49171 u32 mxPage; /* Max database page to write */ local
53720 sqlite3BtreeSetCacheSize(Btree *p, int mxPage) argument
53872 sqlite3BtreeMaxPageCount(Btree *p, int mxPage) argument
56563 Pgno mxPage; /* Total size of the database file */ local
[all...]

Completed in 853 milliseconds