Home | History | Annotate | Download | only in orig

Lines Matching refs:pReal

13722     double *pReal;         /* Used when p4type is P4_REAL */
74329 sqlite3XPrintf(&x, "%.16g", *pOp->p4.pReal);
81019 assert( !sqlite3IsNaN(*pOp->p4.pReal) );
81020 pOut->u.r = *pOp->p4.pReal;
90708 sqlite3_file *pReal = (sqlite3_file*)p;
90712 rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0);
90721 rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff);
90735 sqlite3OsClose(pReal);
173125 sqlite3_file *pReal; /* Underlying file handle */
175272 sqlite3_file *pDb = p->pTargetFd->pReal;
175358 sqlite3_file *pDb = p->pTargetFd->pReal;
175359 sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal;
175425 sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal;
175426 sqlite3_file *pDb = p->pTargetFd->pReal;
175443 sqlite3_file *pReal = p->pTargetFd->pReal;
175445 p->rc = pReal->pMethods->xLock(pReal, SQLITE_LOCK_SHARED);
175447 p->rc = pReal->pMethods->xLock(pReal, SQLITE_LOCK_EXCLUSIVE);
176009 sqlite3_file *pDb = p->pTargetFd->pReal;
176491 sqlite3_file *pDb = p->pTargetFd->pReal;
176626 sqlite3_file *pDb = p->pTargetFd->pReal;
176707 int (*xShmLock)(sqlite3_file*,int,int,int) = p->pReal->pMethods->xShmLock;
176711 xShmLock(p->pReal, i, 1, SQLITE_SHM_UNLOCK|SQLITE_SHM_EXCLUSIVE);
176753 p->pReal->pMethods->xShmUnmap(p->pReal, 0);
176760 rc = p->pReal->pMethods->xClose(p->pReal);
176816 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
176889 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst);
176910 return p->pReal->pMethods->xTruncate(p->pReal, size);
176924 return p->pReal->pMethods->xSync(p->pReal, flags);
176933 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
176964 rc = p->pReal->pMethods->xLock(p->pReal, eLock);
176975 return p->pReal->pMethods->xUnlock(p->pReal, eLock);
176983 return p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut);
176991 int (*xControl)(sqlite3_file*,int,void*) = p->pReal->pMethods->xFileControl;
177003 rc = xControl(p->pReal, op, pArg);
177009 rc = xControl(p->pReal, SQLITE_FCNTL_ZIPVFS, &dummy);
177029 rc = xControl(p->pReal, op, pArg);
177046 return p->pReal->pMethods->xSectorSize(p->pReal);
177054 return p->pReal->pMethods->xDeviceCharacteristics(p->pReal);
177086 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags);
177144 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);
177155 p->pReal->pMethods->xShmBarrier(p->pReal);
177172 rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag);
177256 pFd->pReal = (sqlite3_file*)&pFd[1];
177313 rc = pRealVfs->xOpen(pRealVfs, zOpen, pFd->pReal, oflags, pOutFlags);
177315 if( pFd->pReal->pMethods ){