Lines Matching refs:pReal
135 sqlite3_file *pReal; /* The real underlying file */ member
296 rc = p->pReal->pMethods->xClose(p->pReal); in vfstraceClose()
319 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); in vfstraceRead()
338 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst); in vfstraceWrite()
352 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vfstraceTruncate()
376 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfstraceSync()
389 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vfstraceFileSize()
418 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vfstraceLock()
432 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vfstraceUnlock()
446 rc = p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut); in vfstraceCheckReservedLock()
499 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg); in vfstraceFileControl()
521 rc = p->pReal->pMethods->xSectorSize(p->pReal); in vfstraceSectorSize()
535 rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal); in vfstraceDeviceCharacteristics()
559 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags); in vfstraceShmLock()
575 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp); in vfstraceShmMap()
583 p->pReal->pMethods->xShmBarrier(p->pReal); in vfstraceShmBarrier()
591 rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag); in vfstraceShmUnmap()
614 p->pReal = (sqlite3_file *)&p[1]; in vfstraceOpen()
615 rc = pRoot->xOpen(pRoot, zName, p->pReal, flags, pOutFlags); in vfstraceOpen()
618 if( p->pReal->pMethods ){ in vfstraceOpen()
620 const sqlite3_io_methods *pSub = p->pReal->pMethods; in vfstraceOpen()