Searched refs:pReal (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 18381 sqlite3_file *pReal; /* The real underlying file */ member 18602 rc = p->pReal->pMethods->xClose(p->pReal); in vfstraceClose() 18626 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); in vfstraceRead() 18646 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst); in vfstraceWrite() 18661 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vfstraceTruncate() 18686 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfstraceSync() 18700 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vfstraceFileSize() 18730 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vfstraceLock() 18745 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vfstraceUnlock() 18760 rc = p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut); in vfstraceCheckReservedLock() [all …]
|
| H A D | sqlite3.c | 17562 double *pReal; /* Used when p4type is P4_REAL */ member 89835 sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal); 98006 assert( !sqlite3IsNaN(*pOp->p4.pReal) ); 98007 pOut->u.r = *pOp->p4.pReal; 109923 sqlite3_file *pReal = (sqlite3_file*)p; local 109927 rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0); 109936 rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff); 109950 sqlite3OsClose(pReal); 226768 sqlite3_file *pReal; /* Underlying file handle */ member 229317 sqlite3_file *pDb = p->pTargetFd->pReal; [all …]
|