Searched refs:xFetch (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 842 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member 8683 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member 8705 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member
|
| H A D | shell.c | 4109 return pFile->pMethods->xFetch(pFile, iOfst+p->iPgOne, iAmt, pp); in apndFetch()
|
| H A D | sqlite3.c | 1148 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member 8989 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member 9011 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member 24108 return id->pMethods->xFetch(id, iOff, iAmt, pp); 49901 pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0); 50210 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); 50270 *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2); 50484 pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0);
|