Home | History | Annotate | Download | only in orig

Lines Matching refs:cache_size

6737 ** the SQLite "[PRAGMA cache_size]" command.)^  As with the bPurgeable
9633 int cache_size; /* Number of pages to use in the cache */
36920 unsigned int nMax; /* Configured "cache_size" value */
37453 ** Configure the cache_size limit for a cache.
72048 mxCache = db->aDb[0].pSchema->cache_size;
85418 ** The Schema.cache_size variable is not cleared.
92476 sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "cache_size", SQLITE_STATIC);
92488 pDb->pSchema->cache_size = size;
92489 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
92784 ** PRAGMA [database.]cache_size
92785 ** PRAGMA [database.]cache_size=N
92794 if( sqlite3StrICmp(zLeft,"cache_size")==0 ){
92798 returnSingleInt(pParse, "cache_size", pDb->pSchema->cache_size);
92801 pDb->pSchema->cache_size = size;
92802 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
93917 if( pDb->pSchema->cache_size==0 ){
93921 pDb->pSchema->cache_size = size;
93923 pDb->pSchema->cache_size = SQLITE_DEFAULT_CACHE_SIZE;
93925 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);