Home | History | Annotate | Download | only in dist

Lines Matching refs:xFetch

6745 ** [[the xFetch() page cache methods]]
6746 ** The xFetch() method locates a page in the cache and returns a pointer to
6755 ** is 1. After it has been retrieved using xFetch, the page is considered
6773 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
6775 ** failed.)^ In between the to xFetch() calls, SQLite may
6790 ** to xFetch().
6827 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
6849 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
36496 pPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate);
36531 pPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2);
37529 ** Implementation of the sqlite3_pcache.xFetch method.
37826 pcache1Fetch, /* xFetch */