Home
last modified time | relevance | path

Searched refs:pPCache (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dpager.c1754 sqlite3PcacheClear(pPager->pPCache); in pager_reset()
2100 sqlite3PcacheCleanAll(pPager->pPCache); in pager_end_transaction()
3505 sqlite3PcacheShrink(pPager->pPCache); in sqlite3PagerShrink()
3719 && sqlite3PcacheRefCount(pPager->pPCache)==0 in sqlite3PagerSetPagesize()
4160 sqlite3PcacheClose(pPager->pPCache); in sqlite3PagerClose()
4324 sqlite3PcacheClearSyncFlags(pPager->pPCache); in syncJournal()
5694 assert( pPager->pPCache!=0 ); in sqlite3PagerLookup()
6445 sqlite3PcacheCleanAll(pPager->pPCache); in sqlite3PagerCommitPhaseOne()
6578 sqlite3PcacheCleanAll(pPager->pPCache); in sqlite3PagerCommitPhaseOne()
6749 return sqlite3PcacheRefCount(pPager->pPCache); in sqlite3PagerRefcount()
[all …]
/sqlite-3.40.0/tool/
H A Dfuzzershell.c807 void *pPCache = 0; /* Allocated storage for pcache */ in main() local
955 pPCache = malloc( nPCache*(sqlite3_int64)szPCache ); in main()
956 if( pPCache==0 ) fatalError("cannot allocate %lld-byte pcache", in main()
958 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, pPCache, szPCache, nPCache); in main()
1260 free(pPCache); in main()
/sqlite-3.40.0/test/
H A Dspeedtest1.c2227 void *pPCache = 0; /* Allocated storage for pcache */ in main() local
2435 pPCache = malloc( nPCache*(sqlite3_int64)szPCache ); in main()
2436 if( pPCache==0 ) fatal_error("cannot allocate %lld-byte pcache\n", in main()
2439 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, pPCache, szPCache, nPCache); in main()
2645 free( pPCache ); in main()