Lines Matching refs:pStream
54 SvStream* pStream; member in SVInputStream
56 SVInputStream( SvStream* pSt ):pStream( pSt ){}; in SVInputStream()
57 ~SVInputStream(){ delete pStream; pStream=NULL; } in ~SVInputStream()
71 sal_Int32 nRead = pStream->Read( aData.getArray(), nBytesToRead ); in readBytes()
84 pStream->SeekRel( nBytesToSkip ); in skipBytes()
89 sal_uLong nCurrent = pStream->Tell(); in available()
90 sal_uLong nSize = pStream->Seek( STREAM_SEEK_TO_END ); in available()
92 pStream->Seek( nCurrent ); in available()
99 delete pStream; in closeInput()
100 pStream = NULL; in closeInput()
258 SvStream* pStream = new SvFileStream( aFilename, STREAM_STD_READ ); in Parse() local
259 if ( pStream->GetError() ) in Parse()
263 …sSource.aInputStream = new SVInputStream( pStream ); // is refcounted and hence deletet appropr… in Parse()