Lines Matching defs:cache_size
2391 ** [PRAGMA cache_size] setting and this value.
9092 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
16824 int cache_size; /* Number of pages to use in the cache */
52871 ** cache size requested by the "PRAGMA cache_size" statement.
53723 unsigned int nMax; /* Configured "cache_size" value */
54346 ** Configure the cache_size limit for a cache.
99865 ** that returned by "PRAGMA main.cache_size", in bytes.
100774 mxCache = db->aDb[0].pSchema->cache_size;
123641 ** The Schema.cache_size variable is not cleared.
133694 /* 55 */ "cache_size", /* Used by: default_cache_size */
133750 {/* zName: */ "cache_size",
134790 pDb->pSchema->cache_size = size;
134791 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
135081 ** PRAGMA [schema.]cache_size
135082 ** PRAGMA [schema.]cache_size=N
135094 returnSingleInt(v, pDb->pSchema->cache_size);
135097 pDb->pSchema->cache_size = size;
135098 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
135111 ** current cache_size. The third form sets a spill size that
135119 ** cache_size pages, no spilling occurs until the page count exceeds
135120 ** the number of cache_size pages.
137465 if( pDb->pSchema->cache_size==0 ){
137469 pDb->pSchema->cache_size = size;
137471 pDb->pSchema->cache_size = SQLITE_DEFAULT_CACHE_SIZE;
137473 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
149764 sqlite3BtreeSetCacheSize(pTemp, db->aDb[iDb].pSchema->cache_size);