Home
last modified time | relevance | path

Searched refs:xFetch (Results 1 – 14 of 14) sorted by relevance

/sqlite-3.40.0/src/
H A Dpcache.c89 pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0); in pcacheDump()
414 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); in sqlite3PcacheFetch()
475 *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2); in sqlite3PcacheFetchStress()
657 pOther = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, newPgno, 0); in sqlite3PcacheMove()
701 pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0); in sqlite3PcacheTruncate()
H A Dtest_init.c140 return wrapped.pcache.xFetch(p, a, b); in wrPCacheFetch()
H A Dos.c195 return id->pMethods->xFetch(id, iOff, iAmt, pp); in sqlite3OsFetch()
H A Dsqlite.h.in853 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member
8739 ** [[the xFetch() page cache methods]]
8740 ** The xFetch() method locates a page in the cache and returns a pointer to
8749 ** is 1. After it has been retrieved using xFetch, the page is considered
8767 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
8769 ** failed.)^ In between the xFetch() calls, SQLite may
8784 ** to xFetch().
8821 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member
8843 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member
/sqlite-3.40.0/ext/misc/
H A Dmmapwarm.c86 rc = p->xFetch(pFd, pgsz*iPg, pgsz, (void**)&pMap); in sqlite3_mmap_warm()
H A Dcksumvfs.c661 if( pFile->pMethods->iVersion>2 && pFile->pMethods->xFetch ){ in cksmFetch()
662 return pFile->pMethods->xFetch(pFile, iOfst, iAmt, pp); in cksmFetch()
H A Dappendvfs.c422 return pFile->pMethods->xFetch(pFile, iOfst+p->iPgOne, iAmt, pp); in apndFetch()
H A Dvfsstat.c422 return p->pReal->pMethods->xFetch(p->pReal, iOfst, iAmt, pp); in vstatFetch()
/sqlite-3.40.0/test/
H A Dmmap1.test190 # Ensure that existing cursors using xFetch() pages see changes made
239 # Ensure that existing cursors holding xFetch() references are not
H A Dincrvacuum.test788 # were outstanding xFetch() references. This test case attempts to hit
824 # while there are outstanding xFetch pages.
/sqlite-3.40.0/doc/
H A Dvdbesort-memory.md32 either by mapping the file (via sqlite3_file.xFetch()) or else read back
/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest.h83 int (*xFetch)(TestDb *, void *, int, void **, int *); member
H A Dlsmtest_tdb.c810 return pDb->pMethods->xFetch(pDb, pKey, nKey, ppVal, pnVal); in tdb_fetch()
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-wasm.c763 M(xFetch,"i(pjip)"); in sqlite3_wasm_enum_json()