Searched refs:xFetch (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
| H A D | sqlite3.d | 311 int function (sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp) xFetch; 1756 sqlite3_pcache_page * function(sqlite3_pcache*, uint key, int createFlag) xFetch; 1773 void* function (sqlite3_pcache*, uint key, int createFlag) xFetch;
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.h | 855 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member 9076 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member 9098 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member
|
| H A D | shell.c | 2726 pRes = pcacheBase.xFetch(p, key, crFg); in pcachetraceFetch() 2795 if( pcacheBase.xFetch==0 ){ in sqlite3PcacheTraceActivate() 2808 if( pcacheBase.xFetch!=0 ){ in sqlite3PcacheTraceDeactivate() 9043 return pFile->pMethods->xFetch(pFile, iOfst+p->iPgOne, iAmt, pp); in apndFetch()
|
| H A D | sqlite3.c | 1168 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member 9389 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member 9411 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member 25953 return id->pMethods->xFetch(id, iOff, iAmt, pp); in sqlite3OsFetch() 53952 pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0); 54286 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); 54347 *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2); 54529 pOther = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, newPgno, 0); 54573 pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0);
|