Lines Matching refs:m_nCurPos
79 void SetPosition(FX_FILESIZE pos) { m_nCurPos = pos; } in SetPosition()
86 FX_FILESIZE m_nCurPos; member in __anond7ba9f580111::FPDF_FileHandlerContext
91 m_nCurPos = 0; in FPDF_FileHandlerContext()
106 return m_nCurPos >= GetSize(); in IsEOF()
110 return m_nCurPos; in GetPosition()
121 m_nCurPos = offset + size; in ReadBlockAtOffset()
132 if (m_nCurPos >= nSize) in ReadBlock()
134 FX_FILESIZE dwAvail = nSize - m_nCurPos; in ReadBlock()
137 if (m_pFS->ReadBlock(m_pFS->clientData, (FPDF_DWORD)m_nCurPos, buffer, in ReadBlock()
139 m_nCurPos += size; in ReadBlock()
154 m_nCurPos = offset + size; in WriteBlockAtOffset()