Home
last modified time | relevance | path

Searched refs:pReal (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dshell.c16366 sqlite3_file *pReal; /* The real underlying file */ member
16587 rc = p->pReal->pMethods->xClose(p->pReal); in vfstraceClose()
16611 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); in vfstraceRead()
16631 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst); in vfstraceWrite()
16646 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vfstraceTruncate()
16671 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfstraceSync()
16685 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vfstraceFileSize()
16715 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vfstraceLock()
16730 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vfstraceUnlock()
16745 rc = p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut); in vfstraceCheckReservedLock()
[all …]
H A Dsqlite3.c16929 double *pReal; /* Used when p4type is P4_REAL */ member
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;
[all …]