Home
last modified time | relevance | path

Searched refs:xTempOut (Results 1 – 11 of 11) sorted by relevance

/trunk/main/embedserv/source/embed/
H A Ded_ipersiststr.cxx71 uno::Reference < io::XOutputStream > xTempOut = uno::Reference < io::XOutputStream > ( in createTempXInStreamFromIStream() local
74 if ( xTempOut.is() ) in createTempXInStreamFromIStream()
98 xTempOut->writeBytes( aBuffer ); in createTempXInStreamFromIStream()
104 uno::Reference < io::XSeekable > xTempSeek ( xTempOut, uno::UNO_QUERY ); in createTempXInStreamFromIStream()
108 xResult = uno::Reference< io::XInputStream >( xTempOut, uno::UNO_QUERY ); in createTempXInStreamFromIStream()
120 HRESULT copyXTempOutToIStream( uno::Reference< io::XOutputStream > xTempOut, IStream* pStream ) in copyXTempOutToIStream() argument
122 if ( !xTempOut.is() || !pStream ) in copyXTempOutToIStream()
125 uno::Reference < io::XSeekable > xTempSeek ( xTempOut, uno::UNO_QUERY ); in copyXTempOutToIStream()
131 uno::Reference< io::XInputStream > xTempIn ( xTempOut, uno::UNO_QUERY ); in copyXTempOutToIStream()
632 uno::Reference < io::XOutputStream > xTempOut = uno::Reference < io::XOutputStream > ( in Save() local
[all …]
/trunk/main/package/source/package/zippackage/
H A DZipPackageStream.cxx188 uno::Reference < io::XOutputStream > xTempOut( in GetRawEncrStreamNoHeaderCopy() local
191 uno::Reference < io::XInputStream > xTempIn( xTempOut, UNO_QUERY ); in GetRawEncrStreamNoHeaderCopy()
192 uno::Reference < io::XSeekable > xTempSeek( xTempOut, UNO_QUERY ); in GetRawEncrStreamNoHeaderCopy()
193 if ( !xTempOut.is() || !xTempIn.is() || !xTempSeek.is() ) in GetRawEncrStreamNoHeaderCopy()
197 ::comphelper::OStorageHelper::CopyInputToOutput( GetOwnSeekStream(), xTempOut ); in GetRawEncrStreamNoHeaderCopy()
198 xTempOut->closeOutput(); in GetRawEncrStreamNoHeaderCopy()
360 uno::Reference < io::XOutputStream > xTempOut( in TryToGetRawFromDataStream() local
363 uno::Reference < io::XInputStream > xTempIn( xTempOut, UNO_QUERY ); in TryToGetRawFromDataStream()
364 uno::Reference < io::XSeekable > xTempSeek( xTempOut, UNO_QUERY ); in TryToGetRawFromDataStream()
365 if ( !xTempOut.is() || !xTempIn.is() || !xTempSeek.is() ) in TryToGetRawFromDataStream()
[all …]
H A DZipPackage.cxx1164 uno::Reference < io::XOutputStream > xTempOut; in writeTempFile() local
1175 xTempOut = xStr->getOutputStream(); in writeTempFile()
1176 if( xTempOut.is() ) in writeTempFile()
1184 xTempOut = m_xStream->getOutputStream(); in writeTempFile()
1185 if( xTempOut.is() ) in writeTempFile()
1194 xTempOut.set( xTempFile->getOutputStream(), UNO_SET_THROW ); in writeTempFile()
1199 ZipOutputStream aZipOut( m_xFactory, xTempOut ); in writeTempFile()
1291 xTempOut->flush(); in writeTempFile()
1295 … uno::Reference< io::XAsyncOutputMonitor > asyncOutputMonitor( xTempOut, uno::UNO_QUERY ); in writeTempFile()
/trunk/main/comphelper/source/streaming/
H A Dseekableinput.cxx99 uno::Reference< io::XOutputStream > xTempOut( in PrepareCopy_Impl() local
103 if ( xTempOut.is() ) in PrepareCopy_Impl()
105 copyInputToOutput_Impl( m_xOriginalStream, xTempOut ); in PrepareCopy_Impl()
106 xTempOut->closeOutput(); in PrepareCopy_Impl()
108 uno::Reference< io::XSeekable > xTempSeek( xTempOut, uno::UNO_QUERY ); in PrepareCopy_Impl()
112 m_xCopyInput = uno::Reference< io::XInputStream >( xTempOut, uno::UNO_QUERY ); in PrepareCopy_Impl()
/trunk/main/sot/source/unoolestorage/
H A Dxolesimplestorage.cxx268 uno::Reference< io::XOutputStream > xTempOut = xTempFile->getOutputStream(); in initialize() local
269 if ( !xTempOut.is() ) in initialize()
282 ::comphelper::OStorageHelper::CopyInputToOutput( xInputStream, xTempOut ); in initialize()
283 xTempOut->closeOutput(); in initialize()
300 ::comphelper::OStorageHelper::CopyInputToOutput( xInpStream, xTempOut ); in initialize()
301 xTempOut->flush(); in initialize()
/trunk/main/embeddedobj/source/commonembedding/
H A Dpersistence.cxx181 uno::Reference< io::XOutputStream > xTempOut = xTempStream->getOutputStream(); in createTempInpStreamFromStor() local
182 if ( xTempOut.is() ) in createTempInpStreamFromStor()
183 xTempOut->closeOutput(); in createTempInpStreamFromStor()
597 uno::Reference < io::XOutputStream > xTempOut( in StoreDocumentToTempStream_Impl() local
600 uno::Reference< io::XInputStream > aResult( xTempOut, uno::UNO_QUERY ); in StoreDocumentToTempStream_Impl()
602 if ( !xTempOut.is() || !aResult.is() ) in StoreDocumentToTempStream_Impl()
625 aArgs[1].Value <<= xTempOut; in StoreDocumentToTempStream_Impl()
634 xTempOut->closeOutput(); in StoreDocumentToTempStream_Impl()
/trunk/main/package/source/xstor/
H A Dxstorage.cxx148 uno::Reference < io::XOutputStream > xTempOut( in GetSeekableTempCopy() local
151 uno::Reference < io::XInputStream > xTempIn( xTempOut, uno::UNO_QUERY ); in GetSeekableTempCopy()
153 if ( !xTempOut.is() || !xTempIn.is() ) in GetSeekableTempCopy()
156 ::comphelper::OStorageHelper::CopyInputToOutput( xInStream, xTempOut ); in GetSeekableTempCopy()
157 xTempOut->closeOutput(); in GetSeekableTempCopy()
3818 uno::Reference < io::XOutputStream > xTempOut( in getPlainRawStreamElement() local
3822 xTempIn = uno::Reference < io::XInputStream >( xTempOut, uno::UNO_QUERY ); in getPlainRawStreamElement()
3823 uno::Reference < io::XSeekable > xSeek( xTempOut, uno::UNO_QUERY ); in getPlainRawStreamElement()
3825 if ( !xTempOut.is() || !xTempIn.is() || !xSeek.is() ) in getPlainRawStreamElement()
3829 ::comphelper::OStorageHelper::CopyInputToOutput( xRawInStream, xTempOut ); in getPlainRawStreamElement()
[all …]
H A Dowriteablestream.cxx1560 uno::Reference < io::XOutputStream > xTempOut = xTempFile->getOutputStream(); in CreateReadonlyCopyBasedOnData() local
1561 if ( !xTempOut.is() ) in CreateReadonlyCopyBasedOnData()
1565 ::comphelper::OStorageHelper::CopyInputToOutput( xDataToCopy, xTempOut ); in CreateReadonlyCopyBasedOnData()
1567 xTempOut->closeOutput(); in CreateReadonlyCopyBasedOnData()
/trunk/main/svl/source/fsstor/
H A Dfsstorage.cxx700 uno::Reference < io::XOutputStream > xTempOut = xTempResult->getOutputStream(); in cloneStreamElement() local
703 if ( !xTempOut.is() || !xTempIn.is() ) in cloneStreamElement()
706 ::comphelper::OStorageHelper::CopyInputToOutput( xInStream, xTempOut ); in cloneStreamElement()
707 xTempOut->closeOutput(); in cloneStreamElement()
/trunk/main/ucb/source/ucp/gvfs/
H A Dgvfs_content.cxx1445 uno::Reference < io::XOutputStream > xTempOut = in createTempStream() local
1449 if ( !xTempOut.is() ) in createTempStream()
1457 copyData( pStream, xTempOut ); in createTempStream()
1459 return uno::Reference < io::XInputStream > ( xTempOut, uno::UNO_QUERY ); in createTempStream()
/trunk/main/scripting/source/stringresource/
H A Dstringresource.cxx1543 Reference< io::XOutputStream > xTempOut( m_xMCF->createInstanceWithContext in getInputStreamForSection() local
1545 if( xTempOut.is() ) in getInputStreamForSection()
1548 xTempOut->writeBytes( aSection ); in getInputStreamForSection()
1550 Reference< io::XSeekable> xSeekable( xTempOut, UNO_QUERY ); in getInputStreamForSection()
1554 xIn = Reference< io::XInputStream>( xTempOut, UNO_QUERY ); in getInputStreamForSection()