Searched refs:pPCache (Results 1 – 3 of 3) sorted by relevance
1754 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 …]
807 void *pPCache = 0; /* Allocated storage for pcache */ in main() local955 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()
2227 void *pPCache = 0; /* Allocated storage for pcache */ in main() local2435 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()