Lines Matching refs:mxStmWrapper
95 Reference< XInputStream > mxStmWrapper; member in SvXMLGraphicInputStream
107 sal_Bool Exists() const { return mxStmWrapper.is(); } in Exists()
160 mxStmWrapper = new ::utl::OInputStreamWrapper( pStm, sal_True ); in SvXMLGraphicInputStream()
179 if( !mxStmWrapper.is() ) in readBytes()
182 return mxStmWrapper->readBytes( rData, nBytesToRead ); in readBytes()
190 if( !mxStmWrapper.is() ) in readSomeBytes()
193 return mxStmWrapper->readSomeBytes( rData, nMaxBytesToRead ); in readSomeBytes()
201 if( !mxStmWrapper.is() ) in skipBytes()
204 mxStmWrapper->skipBytes( nBytesToSkip ); in skipBytes()
211 if( !mxStmWrapper.is() ) in available()
214 return mxStmWrapper->available(); in available()
221 if( !mxStmWrapper.is() ) in closeInput()
224 mxStmWrapper->closeInput(); in closeInput()
244 Reference< XOutputStream > mxStmWrapper; member in SvXMLGraphicOutputStream
257 sal_Bool Exists() const { return mxStmWrapper.is(); } in Exists()
272 mxStmWrapper = new ::utl::OOutputStreamWrapper( *mpOStm ); in SvXMLGraphicOutputStream()
288 if( !mxStmWrapper.is() ) in writeBytes()
291 mxStmWrapper->writeBytes( rData ); in writeBytes()
299 if( !mxStmWrapper.is() ) in flush()
302 mxStmWrapper->flush(); in flush()
310 if( !mxStmWrapper.is() ) in closeOutput()
313 mxStmWrapper->closeOutput(); in closeOutput()
314 mxStmWrapper = Reference< XOutputStream >(); in closeOutput()