Lines Matching refs:pReal
16498 double *pReal; /* Used when p4type is P4_REAL */ member
86787 sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal);
94460 assert( !sqlite3IsNaN(*pOp->p4.pReal) );
94461 pOut->u.r = *pOp->p4.pReal;
106166 sqlite3_file *pReal = (sqlite3_file*)p;
106170 rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0);
106179 rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff);
106193 sqlite3OsClose(pReal);
218563 sqlite3_file *pReal; /* Underlying file handle */
221098 sqlite3_file *pDb = p->pTargetFd->pReal;
221184 sqlite3_file *pDb = p->pTargetFd->pReal;
221185 sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal;
221251 sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal;
221252 sqlite3_file *pDb = p->pTargetFd->pReal;
221858 sqlite3_file *pDb = p->pTargetFd->pReal;
222357 sqlite3_file *pDb = p->pTargetFd->pReal;
222492 sqlite3_file *pDb = p->pTargetFd->pReal;
222624 int (*xShmLock)(sqlite3_file*,int,int,int) = p->pReal->pMethods->xShmLock;
222628 xShmLock(p->pReal, i, 1, SQLITE_SHM_UNLOCK|SQLITE_SHM_EXCLUSIVE);
222727 const sqlite3_io_methods *pMeth = p->pReal->pMethods;
222731 pMeth->xShmUnmap(p->pReal, 0);
222740 rc = p->pReal->pMethods->xClose(p->pReal);
222796 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
222869 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst);
222890 return p->pReal->pMethods->xTruncate(p->pReal, size);
222904 return p->pReal->pMethods->xSync(p->pReal, flags);
222913 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
222944 rc = p->pReal->pMethods->xLock(p->pReal, eLock);
222955 return p->pReal->pMethods->xUnlock(p->pReal, eLock);
222963 return p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut);
222971 int (*xControl)(sqlite3_file*,int,void*) = p->pReal->pMethods->xFileControl;
222983 rc = xControl(p->pReal, op, pArg);
222989 rc = xControl(p->pReal, SQLITE_FCNTL_ZIPVFS, &dummy);
223010 rc = xControl(p->pReal, op, pArg);
223027 return p->pReal->pMethods->xSectorSize(p->pReal);
223035 return p->pReal->pMethods->xDeviceCharacteristics(p->pReal);
223066 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags);
223128 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);
223139 p->pReal->pMethods->xShmBarrier(p->pReal);
223156 rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag);
223218 pFd->pReal = (sqlite3_file*)&pFd[1];
223261 rc = pRealVfs->xOpen(pRealVfs, zOpen, pFd->pReal, oflags, pOutFlags);
223263 if( pFd->pReal->pMethods ){
223264 const sqlite3_io_methods *pMeth = pFd->pReal->pMethods;