Lines Matching refs:io

39 class OActiveDataStreamer : public ::cppu::WeakImplHelper1< io::XActiveDataStreamer>
41 uno::Reference< io::XStream > m_xStream;
44 …virtual void SAL_CALL setStream( const uno::Reference< io::XStream >& _rStream ) throw (uno::Runti… in setStream()
48 virtual uno::Reference< io::XStream > SAL_CALL getStream( ) throw (uno::RuntimeException) in getStream()
73 catch (io::IOException const &) in ~OOdmaStream()
83 uno::Reference< io::XInputStream > SAL_CALL OOdmaStream::getInputStream( ) throw( uno::RuntimeExce… in getInputStream()
89 return uno::Reference< io::XInputStream >( this ); in getInputStream()
92 uno::Reference< io::XOutputStream > SAL_CALL OOdmaStream::getOutputStream( ) throw( uno::RuntimeEx… in getOutputStream()
98 return uno::Reference< io::XOutputStream >( this ); in getOutputStream()
102 throw( io::NotConnectedException, in readBytes()
103 io::BufferSizeExceededException, in readBytes()
104 io::IOException, in readBytes()
113 throw( io::NotConnectedException, in readSomeBytes()
114 io::BufferSizeExceededException, in readSomeBytes()
115 io::IOException, in readSomeBytes()
122 throw( io::NotConnectedException, in skipBytes()
123 io::BufferSizeExceededException, in skipBytes()
124 io::IOException, in skipBytes()
132 throw( io::NotConnectedException, in available()
133 io::IOException, in available()
141 throw( io::NotConnectedException, in writeBytes()
142 io::BufferSizeExceededException, in writeBytes()
143 io::IOException, in writeBytes()
151 void SAL_CALL OOdmaStream::closeStream() throw( io::NotConnectedException,io::IOException,uno::Runt… in closeStream()
170 throw( io::NotConnectedException, in closeInput()
171 io::IOException, in closeInput()
182 throw( io::NotConnectedException, in closeOutput()
183 io::IOException, in closeOutput()
194 throw( io::NotConnectedException, in flush()
195 io::BufferSizeExceededException, in flush()
196 io::IOException, in flush()
203 void OOdmaStream::ensureInputStream() throw( io::IOException ) in ensureInputStream()
210 m_xInputSeek = uno::Reference< io::XSeekable>(m_xInput,uno::UNO_QUERY); in ensureInputStream()
217 throw io::IOException(); in ensureInputStream()
220 void OOdmaStream::ensureOutputStream() throw( io::IOException ) in ensureOutputStream()
228 uno::Reference< io::XActiveDataStreamer > xActiveStreamer = new OActiveDataStreamer(); in ensureOutputStream()
233 uno::Reference< io::XStream> xStream = xActiveStreamer->getStream(); in ensureOutputStream()
243 throw io::IOException(); in ensureOutputStream()
244 m_xTruncate = uno::Reference< io::XTruncate>(m_xOutput,uno::UNO_QUERY); in ensureOutputStream()
249 throw( io::IOException, in truncate()
259 io::IOException, in seek()
268 throw( io::IOException, in getPosition()
276 throw( io::IOException, in getLength()