Lines Matching refs:io
43 uno::Reference< io::XStream > m_xOrigStream;
44 uno::Reference< io::XTruncate > m_xOrigTruncate;
45 uno::Reference< io::XSeekable > m_xOrigSeekable;
46 uno::Reference< io::XInputStream > m_xOrigInStream;
47 uno::Reference< io::XOutputStream > m_xOrigOutStream;
56 const uno::Reference< io::XStream >& xOrigStream, in SPStreamData_Impl()
57 const uno::Reference< io::XTruncate >& xOrigTruncate, in SPStreamData_Impl()
58 const uno::Reference< io::XSeekable >& xOrigSeekable, in SPStreamData_Impl()
59 const uno::Reference< io::XInputStream >& xOrigInStream, in SPStreamData_Impl()
60 const uno::Reference< io::XOutputStream >& xOrigOutStream, in SPStreamData_Impl()
80 const uno::Reference< io::XStream >& xStream ) in SwitchablePersistenceStream()
90 const uno::Reference< io::XInputStream >& xInputStream ) in SwitchablePersistenceStream()
104 void SwitchablePersistenceStream::SwitchPersistenceTo( const uno::Reference< io::XStream >& xStream… in SwitchPersistenceTo()
106 uno::Reference< io::XTruncate > xNewTruncate( xStream, uno::UNO_QUERY_THROW ); in SwitchPersistenceTo()
107 uno::Reference< io::XSeekable > xNewSeekable( xStream, uno::UNO_QUERY_THROW ); in SwitchPersistenceTo()
108 uno::Reference< io::XInputStream > xNewInStream = xStream->getInputStream(); in SwitchPersistenceTo()
109 uno::Reference< io::XOutputStream > xNewOutStream = xStream->getOutputStream(); in SwitchPersistenceTo()
139 void SwitchablePersistenceStream::SwitchPersistenceTo( const uno::Reference< io::XInputStream >& xI… in SwitchPersistenceTo()
141 uno::Reference< io::XStream > xNewStream; in SwitchPersistenceTo()
142 uno::Reference< io::XTruncate > xNewTruncate; in SwitchPersistenceTo()
143 uno::Reference< io::XSeekable > xNewSeekable( xInputStream, uno::UNO_QUERY_THROW ); in SwitchPersistenceTo()
144 uno::Reference< io::XOutputStream > xNewOutStream; in SwitchPersistenceTo()
175 void SwitchablePersistenceStream::CopyAndSwitchPersistenceTo( const uno::Reference< io::XStream >& … in CopyAndSwitchPersistenceTo()
177 uno::Reference< io::XStream > xTargetStream = xStream; in CopyAndSwitchPersistenceTo()
178 uno::Reference< io::XSeekable > xTargetSeek; in CopyAndSwitchPersistenceTo()
182 xTargetStream = uno::Reference < io::XStream >( in CopyAndSwitchPersistenceTo()
186 xTargetSeek = uno::Reference< io::XSeekable >( xTargetStream, uno::UNO_QUERY_THROW ); in CopyAndSwitchPersistenceTo()
191 xTargetSeek = uno::Reference< io::XSeekable >( xTargetStream, uno::UNO_QUERY_THROW ); in CopyAndSwitchPersistenceTo()
193 throw io::IOException(); in CopyAndSwitchPersistenceTo()
196 uno::Reference< io::XTruncate > xTargetTruncate( xTargetStream, uno::UNO_QUERY_THROW ); in CopyAndSwitchPersistenceTo()
197 uno::Reference< io::XInputStream > xTargetInStream = xTargetStream->getInputStream(); in CopyAndSwitchPersistenceTo()
198 uno::Reference< io::XOutputStream > xTargetOutStream = xTargetStream->getOutputStream(); in CopyAndSwitchPersistenceTo()
233 uno::Reference< io::XInputStream > SAL_CALL SwitchablePersistenceStream::getInputStream( ) in getInputStream()
240 return static_cast< io::XInputStream* >( this ); in getInputStream()
245 uno::Reference< io::XOutputStream > SAL_CALL SwitchablePersistenceStream::getOutputStream( ) in getOutputStream()
252 return static_cast< io::XOutputStream* >( this ); in getOutputStream()
260 …throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeEx… in readBytes()
265 throw io::NotConnectedException(); in readBytes()
277 …throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeEx… in readSomeBytes()
282 throw io::NotConnectedException(); in readSomeBytes()
293 …throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeEx… in skipBytes()
298 throw io::NotConnectedException(); in skipBytes()
310 throw (io::NotConnectedException, io::IOException, uno::RuntimeException) in available()
315 throw io::NotConnectedException(); in available()
327 throw (io::NotConnectedException, io::IOException, uno::RuntimeException) in closeInput()
332 throw io::NotConnectedException(); in closeInput()
344 …throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeEx… in writeBytes()
349 throw io::NotConnectedException(); in writeBytes()
352 throw io::IOException(); in writeBytes()
364 …throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeEx… in flush()
387 …throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeEx… in closeOutput()
392 throw io::NotConnectedException(); in closeOutput()
404 throw (io::IOException, uno::RuntimeException) in truncate()
409 throw io::NotConnectedException(); in truncate()
412 throw io::IOException(); in truncate()
425 throw (lang::IllegalArgumentException, io::IOException, uno::RuntimeException) in seek()
430 throw io::NotConnectedException(); in seek()
442 throw (io::IOException, uno::RuntimeException) in getPosition()
447 throw io::NotConnectedException(); in getPosition()
459 throw (io::IOException, uno::RuntimeException) in getLength()
464 throw io::NotConnectedException(); in getLength()
475 throw (::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException) in waitForCompletion()
478 throw io::NotConnectedException(); in waitForCompletion()
480 …uno::Reference< io::XAsyncOutputMonitor > asyncOutputMonitor( m_pStreamData->m_xOrigOutStream, uno… in waitForCompletion()