Lines Matching refs:m_pSvStream
94 SvStream* m_pSvStream; member in FileStreamWrapper_Impl
119 , m_pSvStream(0) in FileStreamWrapper_Impl()
127 if ( m_pSvStream ) in ~FileStreamWrapper_Impl()
129 delete m_pSvStream; in ~FileStreamWrapper_Impl()
158 sal_uInt32 nRead = m_pSvStream->Read((void*)aData.getArray(), nBytesToRead); in readBytes()
182 if (m_pSvStream->IsEof()) in readSomeBytes()
201 sal_uInt32 nCurrentPos = m_pSvStream->Tell(); in skipBytes()
204 m_pSvStream->SeekRel(nBytesToSkip); in skipBytes()
208 nCurrentPos = m_pSvStream->Tell(); in skipBytes()
221 sal_uInt32 nPos = m_pSvStream->Tell(); in available()
224 m_pSvStream->Seek(STREAM_SEEK_TO_END); in available()
227 sal_Int32 nAvailable = (sal_Int32)m_pSvStream->Tell() - nPos; in available()
228 m_pSvStream->Seek(nPos); in available()
242 DELETEZ( m_pSvStream ); in closeInput()
259 m_pSvStream->Seek((sal_uInt32)_nLocation); in seek()
272 sal_uInt32 nPos = m_pSvStream->Tell(); in getPosition()
286 sal_uInt32 nCurrentPos = m_pSvStream->Tell(); in getLength()
289 m_pSvStream->Seek(STREAM_SEEK_TO_END); in getLength()
290 sal_uInt32 nEndPos = m_pSvStream->Tell(); in getLength()
291 m_pSvStream->Seek(nCurrentPos); in getLength()
303 if ( !m_pSvStream ) in checkConnected()
305 m_pSvStream = ::utl::UcbStreamHelper::CreateStream( m_aURL, STREAM_STD_READ ); in checkConnected()
317 if (m_pSvStream->SvStream::GetError() != ERRCODE_NONE) in checkError()