Lines Matching refs:m_nBlockLen
37 ,m_nBlockLen(-1) in OStreamSection()
42 m_nBlockLen = _rxInput->readLong(); in OStreamSection()
52 ,m_nBlockLen(-1) in OStreamSection()
60 m_nBlockLen = _nPresumedLength + sizeof(m_nBlockLen); in OStreamSection()
63 m_nBlockLen = 0; in OStreamSection()
64 m_xOutStream->writeLong(m_nBlockLen); in OStreamSection()
77 m_xInStream->skipBytes(m_nBlockLen); in ~OStreamSection()
82 sal_Int32 nRealBlockLength = m_xMarkStream->offsetToMark(m_nBlockStart) - sizeof(m_nBlockLen); in ~OStreamSection()
83 if (m_nBlockLen && (m_nBlockLen == nRealBlockLength)) in ~OStreamSection()
88 m_nBlockLen = nRealBlockLength; in ~OStreamSection()
90 m_xOutStream->writeLong(m_nBlockLen); in ~OStreamSection()
107 nBytes = m_xMarkStream->offsetToMark(m_nBlockStart) - sizeof(m_nBlockLen); in available()