Searched defs:nCache (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dmain.c1116 int nCache, /* How many pages in the page cache */
1125 return sqliteBtreeOpen(0, omitJournal, nCache, ppBtree);
1131 return sqliteBtreeOpen(zFilename, omitJournal, nCache, ppBtree);
1144 return sqliteBtreeOpen(zFilename, omitJournal, nCache, ppBtree);
1112 sqliteBtreeFactory( const sqlite *db, const char *zFilename, int omitJournal, int nCache, Btree **ppBtree) argument
H A Dbtree.c690 int nCache, /* How many pages in the page cache */
717 if( nCache<10 ) nCache = 10;
718 rc = sqlitepager_open(&pBt->pPager, zFilename, nCache, EXTRA_SIZE,
687 sqliteBtreeOpen( const char *zFilename, int omitJournal, int nCache, Btree **ppBtree ) argument

Completed in 81 milliseconds