Lines Matching refs:m_nCurrent
37 , m_nCurrent(0) in ZipPackageBuffer()
51 if (nBytesToRead + m_nCurrent > m_nEnd) in readBytes()
52 nBytesToRead = static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in readBytes()
55 memcpy(aData.getArray(), m_aBuffer.getConstArray() + m_nCurrent, nBytesToRead); in readBytes()
56 m_nCurrent +=nBytesToRead; in readBytes()
71 if (nBytesToSkip + m_nCurrent > m_nEnd) in skipBytes()
72 nBytesToSkip = static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in skipBytes()
74 m_nCurrent+=nBytesToSkip; in skipBytes()
79 return static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in available()
103 …memcpy( m_aBuffer.getArray() + m_nCurrent, aData.getConstArray(), static_cast < sal_Int32 > (nData… in writeBytes()
104 m_nCurrent+=nDataLen; in writeBytes()
105 if (m_nCurrent>m_nEnd) in writeBytes()
106 m_nEnd = m_nCurrent; in writeBytes()
121 m_nCurrent = location; in seek()
126 return m_nCurrent; in getPosition()