Lines Matching refs:iOffset
125 sqlite3_int64 iOffset; /* Log file offset of start of write buffer */ member
633 p->pLog->pMethods->xWrite(p->pLog, p->aBuf, p->nBuf, p->iOffset); in vfslog_flush()
634 p->iOffset += p->nBuf; in vfslog_flush()
748 p->iOffset = 0; in sqlite3_vfslog_new()
823 sqlite3_int64 iOffset; /* Offset of next record in file */ member
975 if( pCsr->iOffset+nRead<=p->nByte ){ in vlogNext()
977 rc = p->pFd->pMethods->xRead(p->pFd, pCsr->aBuf, nRead, pCsr->iOffset); in vlogNext()
984 rc = p->pFd->pMethods->xRead(p->pFd, buf, 4, pCsr->iOffset+nRead); in vlogNext()
989 rc = p->pFd->pMethods->xRead(p->pFd, zStr, nStr, pCsr->iOffset+nRead); in vlogNext()
1012 pCsr->iOffset += nRead; in vlogNext()
1019 return (pCsr->iOffset>=p->nByte); in vlogEof()
1029 pCsr->iOffset = 20; in vlogFilter()