Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h869 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); member
H A Dshell.c11842 return pFile->pMethods->xShmMap(pFile,iPg,pgsz,bExtend,pp); in apndShmMap()
19013 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp); in vfstraceShmMap()
19098 pNew->xShmMap = pSub->xShmMap ? vfstraceShmMap : 0; in vfstraceOpen()
23214 pFd->pMethods->xShmMap(pFd, iPg, pgsz, bExtend, pp) in recoverVfsShmMap()
23268 int iVersion = 1 + (pFd->pMethods->iVersion>1 && pFd->pMethods->xShmMap!=0); in recoverInstallWrapper()
H A Dsqlite3.c1190 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); member
27448 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); in sqlite3OsShmMap()
67138 return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap);
228925 p->rc = pDb->pMethods->xShmMap(pDb, 0, 32*1024, 0, (void volatile**)&ptr);
229691 p->rc = pDb->pMethods->xShmMap(pDb, 0, 32*1024, 0, &ptr);
230955 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);