Lines Matching refs:xInputStream

126 …eStorage* pStorage, ::rtl::OUString aName, const uno::Reference< io::XInputStream >& xInputStream )  in InsertInputStreamToStorage_Impl()  argument
129 if ( !pStorage || !aName.getLength() || !xInputStream.is() ) in InsertInputStreamToStorage_Impl()
150 nRead = xInputStream->readBytes( aData, nBytesCount ); in InsertInputStreamToStorage_Impl()
194 uno::Reference< io::XInputStream > xInputStream; in InsertNameAccessToStorage_Impl() local
197 if ( aAny >>= xInputStream ) in InsertNameAccessToStorage_Impl()
198 InsertInputStreamToStorage_Impl( pNewStorage, aElements[nInd], xInputStream ); in InsertNameAccessToStorage_Impl()
232 uno::Reference< io::XInputStream > xInputStream; in initialize() local
233 if ( !( aArguments[0] >>= xStream ) && !( aArguments[0] >>= xInputStream ) ) in initialize()
247 if ( xInputStream.is() ) in initialize()
250 uno::Reference< io::XSeekable > xSeek( xInputStream, uno::UNO_QUERY_THROW ); in initialize()
251 m_pStream = ::utl::UcbStreamHelper::CreateStream( xInputStream, sal_False ); in initialize()
272 if ( xInputStream.is() ) in initialize()
276 uno::Reference< io::XSeekable > xSeek( xInputStream, uno::UNO_QUERY_THROW ); in initialize()
282 ::comphelper::OStorageHelper::CopyInputToOutput( xInputStream, xTempOut ); in initialize()
337 uno::Reference< io::XInputStream > xInputStream; in insertByName() local
346 xInputStream = xStream->getInputStream(); in insertByName()
347 else if ( !( aElement >>= xInputStream ) && !( aElement >>= xNameAccess ) ) in insertByName()
350 if ( xInputStream.is() ) in insertByName()
351 InsertInputStreamToStorage_Impl( m_pStorage, aName, xInputStream ); in insertByName()
454 uno::Reference< io::XInputStream > xInputStream = xTempFile->getInputStream(); in getByName() local
455 if ( !xOutputStream.is() || !xInputStream.is() ) in getByName()
481 aArgs[0] <<= xInputStream; // allow readonly access only in getByName()
537 aResult <<= xInputStream; in getByName()