Lines Matching defs:xFetch
1170 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
9332 ** [[the xFetch() page cache methods]]
9333 ** The xFetch() method locates a page in the cache and returns a pointer to
9342 ** is 1. After it has been retrieved using xFetch, the page is considered
9360 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
9362 ** failed.)^ In between the xFetch() calls, SQLite may
9377 ** to xFetch().
9414 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9436 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
26229 /* The real implementation of xFetch and xUnfetch */
26232 return id->pMethods->xFetch(id, iOff, iAmt, pp);
37512 0, /* xFetch */
37536 0, /* xFetch */
38629 int nFetchOut; /* Number of outstanding xFetch refs */
43749 ** outstanding xFetch() references to it, this function is a no-op.
43840 ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference),
43921 unixFetch, /* xFetch */ \
46935 int nFetchOut; /* Number of outstanding xFetch references */
51054 ** outstanding xFetch() references to it, this function is a no-op.
51216 ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference),
51272 winFetch, /* xFetch */
51298 winFetch, /* xFetch */
53045 memdbFetch, /* xFetch */
54268 u8 eCreate; /* eCreate value for for xFetch() */
54311 pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0);
54645 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate);
54706 *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2);
54888 pOther = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, newPgno, 0);
54932 pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0);
56100 ** Implementation of the sqlite3_pcache.xFetch method.
56359 pcache1Fetch, /* xFetch */
57758 u8 bUseFetch; /* True to use xFetch() */
57891 ** The macro USEFETCH is true if we are allowed to use the xFetch and xUnfetch
61146 ** The new object will use the pointer pData, obtained from xFetch().
61157 void *pData, /* xFetch()'d data for this page */
80549 ** case they are holding a reference to an xFetch reference
81887 ** required in case any of them are holding references to an xFetch
106356 0, /* xFetch */
139657 ** upper layers will never invoke the xFetch interfaces to the VFS.
183104 /* Beginning with version 3.37.0, using the VFS xFetch() API to memory-map
223189 0, 0 /* xFetch, xUnfetch */