Home
last modified time | relevance | path

Searched refs:xShmMap (Results 1 – 3 of 3) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.h861 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); member
H A Dshell.c9917 return pFile->pMethods->xShmMap(pFile,iPg,pgsz,bExtend,pp); in apndShmMap()
17036 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp); in vfstraceShmMap()
17121 pNew->xShmMap = pSub->xShmMap ? vfstraceShmMap : 0; in vfstraceOpen()
21213 pFd->pMethods->xShmMap(pFd, iPg, pgsz, bExtend, pp) in recoverVfsShmMap()
21267 int iVersion = 1 + (pFd->pMethods->iVersion>1 && pFd->pMethods->xShmMap!=0); in recoverInstallWrapper()
H A Dsqlite3.c1180 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); member
26723 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); in sqlite3OsShmMap()
65593 return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap);
224279 p->rc = pDb->pMethods->xShmMap(pDb, 0, 32*1024, 0, (void volatile**)&ptr);
225045 p->rc = pDb->pMethods->xShmMap(pDb, 0, 32*1024, 0, &ptr);
226309 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);