Lines Matching refs:pReal

16929     double *pReal;         /* Used when p4type is P4_REAL */
87856 sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal);
95709 assert( !sqlite3IsNaN(*pOp->p4.pReal) );
95710 pOut->u.r = *pOp->p4.pReal;
107474 sqlite3_file *pReal = (sqlite3_file*)p;
107478 rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0);
107487 rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff);
107501 sqlite3OsClose(pReal);
221739 sqlite3_file *pReal; /* Underlying file handle */
224277 sqlite3_file *pDb = p->pTargetFd->pReal;
224363 sqlite3_file *pDb = p->pTargetFd->pReal;
224364 sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal;
224430 sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal;
224431 sqlite3_file *pDb = p->pTargetFd->pReal;
225037 sqlite3_file *pDb = p->pTargetFd->pReal;
225537 sqlite3_file *pDb = p->pTargetFd->pReal;
225672 sqlite3_file *pDb = p->pTargetFd->pReal;
225805 int (*xShmLock)(sqlite3_file*,int,int,int) = p->pReal->pMethods->xShmLock;
225809 xShmLock(p->pReal, i, 1, SQLITE_SHM_UNLOCK|SQLITE_SHM_EXCLUSIVE);
225908 const sqlite3_io_methods *pMeth = p->pReal->pMethods;
225912 pMeth->xShmUnmap(p->pReal, 0);
225921 rc = p->pReal->pMethods->xClose(p->pReal);
225977 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
226050 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst);
226071 return p->pReal->pMethods->xTruncate(p->pReal, size);
226085 return p->pReal->pMethods->xSync(p->pReal, flags);
226094 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
226125 rc = p->pReal->pMethods->xLock(p->pReal, eLock);
226136 return p->pReal->pMethods->xUnlock(p->pReal, eLock);
226144 return p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut);
226152 int (*xControl)(sqlite3_file*,int,void*) = p->pReal->pMethods->xFileControl;
226164 rc = xControl(p->pReal, op, pArg);
226170 rc = xControl(p->pReal, SQLITE_FCNTL_ZIPVFS, &dummy);
226191 rc = xControl(p->pReal, op, pArg);
226208 return p->pReal->pMethods->xSectorSize(p->pReal);
226216 return p->pReal->pMethods->xDeviceCharacteristics(p->pReal);
226247 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags);
226309 rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);
226320 p->pReal->pMethods->xShmBarrier(p->pReal);
226337 rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag);
226399 pFd->pReal = (sqlite3_file*)&pFd[1];
226442 rc = pRealVfs->xOpen(pRealVfs, zOpen, pFd->pReal, oflags, pOutFlags);
226444 if( pFd->pReal->pMethods ){
226445 const sqlite3_io_methods *pMeth = pFd->pReal->pMethods;
256986 Fts5Tokenizer *pReal;
257009 rc = pMod->x2.xCreate(pMod->pUserData, azArg, nArg, &pNew->pReal);
257011 rc = pMod->x1.xCreate(pMod->pUserData, azArg, nArg, &pNew->pReal);
257030 p->x2.xDelete(p->pReal);
257032 p->x1.xDelete(p->pReal);
257051 return p->x2.xTokenize(p->pReal, pCtx, flags, pText, nText, 0, 0, xToken);
257068 return p->x1.xTokenize(p->pReal, pCtx, flags, pText, nText, xToken);