Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3PcacheFetch

14556 SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch(PCache*, Pgno, int createFlag);
45361 ** This is an optimization that allows sqlite3PcacheFetch() to skip
45533 ** PgHdr object. The sqlite3PcacheFetch() and sqlite3PcacheFetchFinish()
45539 SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch(
45570 ** If the sqlite3PcacheFetch() routine is unable to allocate a new
45578 ** This routine should be invoked only after sqlite3PcacheFetch() fails.
45658 ** sqlite3PcacheFetch() into an initialized PgHdr object. This routine
45659 ** must be called after sqlite3PcacheFetch() in order to get a usable
52542 ** is impossible for sqlite3PcacheFetch() to be called with createFlag==3
53410 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
53608 pPage = sqlite3PcacheFetch(pPager->pPCache, pgno, 0);