Lines Matching refs:pReal

16366   sqlite3_file *pReal;      /* The real underlying file */  member
16587 rc = p->pReal->pMethods->xClose(p->pReal); in vfstraceClose()
16611 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); in vfstraceRead()
16631 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst); in vfstraceWrite()
16646 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vfstraceTruncate()
16671 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfstraceSync()
16685 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vfstraceFileSize()
16715 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vfstraceLock()
16730 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vfstraceUnlock()
16745 rc = p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut); in vfstraceCheckReservedLock()
16917 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg); in vfstraceFileControl()
16962 rc = p->pReal->pMethods->xSectorSize(p->pReal); in vfstraceSectorSize()
16977 rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal); in vfstraceDeviceCharacteristics()
17019 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags); in vfstraceShmLock()
17036 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp); in vfstraceShmMap()
17045 p->pReal->pMethods->xShmBarrier(p->pReal); in vfstraceShmBarrier()
17054 rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag); in vfstraceShmUnmap()
17065 rc = p->pReal->pMethods->xFetch(p->pReal, iOff, nAmt, pptr); in vfstraceFetch()
17076 rc = p->pReal->pMethods->xUnfetch(p->pReal, iOff, ptr); in vfstraceUnfetch()
17098 p->pReal = (sqlite3_file *)&p[1]; in vfstraceOpen()
17099 rc = pRoot->xOpen(pRoot, zName, p->pReal, flags, pOutFlags); in vfstraceOpen()
17103 if( p->pReal->pMethods ){ in vfstraceOpen()
17105 const sqlite3_io_methods *pSub = p->pReal->pMethods; in vfstraceOpen()