Home
last modified time | relevance | path

Searched refs:ioException (Results 1 – 7 of 7) sorted by relevance

/trunk/main/io/source/connector/
H A Dctr_socket.cxx144 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in read() local
147 any <<= ioException; in read()
151 throw ioException; in read()
160 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in read() local
163 any <<= ioException; in read()
167 throw ioException; in read()
180 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in write() local
183 any <<= ioException; in write()
187 throw ioException; in write()
194 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in write() local
[all …]
/trunk/main/io/source/acceptor/
H A Dacc_socket.cxx209 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in read() local
212 any <<= ioException; in read()
216 throw ioException; in read()
225 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in read() local
228 any <<= ioException; in read()
232 throw ioException; in read()
245 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in write() local
248 any <<= ioException; in write()
252 throw ioException; in write()
259 … IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in write() local
[all …]
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/socket/
H A DSocketConnection.java159 catch(IOException ioException) { in read()
161 … System.err.println("##### " + getClass().getName() + ".read - exception occurred:" + ioException); in read()
162 ioException.printStackTrace(); in read()
165 errMessage = ioException.toString(); in read()
190 catch(IOException ioException) { in write()
191 …m.sun.star.io.IOException unoIOException = new com.sun.star.io.IOException(ioException.toString()); in write()
209 catch(IOException ioException) { in flush()
210 …m.sun.star.io.IOException unoIOException = new com.sun.star.io.IOException(ioException.toString()); in flush()
226 catch(IOException ioException) { in close()
227 …m.sun.star.io.IOException unoIOException = new com.sun.star.io.IOException(ioException.toString()); in close()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/
H A DXConnectionOutputStream_Adapter.java51 catch(com.sun.star.io.IOException ioException) { in write()
52 throw new IOException(ioException.toString()); in write()
73 catch(com.sun.star.io.IOException ioException) { in write()
74 throw new IOException(ioException.toString()); in write()
82 catch(com.sun.star.io.IOException ioException) { in flush()
83 throw new IOException(ioException.toString()); in flush()
H A DXConnectionInputStream_Adapter.java54 catch(com.sun.star.io.IOException ioException) { in read()
55 throw new IOException(ioException.toString()); in read()
69 catch(com.sun.star.io.IOException ioException) { in read()
70 throw new IOException(ioException.toString()); in read()
/trunk/main/jurt/test/com/sun/star/comp/connections/
H A DPipedConnection_Test.java88 catch(com.sun.star.io.IOException ioException) { in run()
89 System.err.println("#### Reader - unexpected:" + ioException); in run()
125 catch(com.sun.star.io.IOException ioException) { in run()
126 System.err.println("#### Writer:" + ioException); in run()
/trunk/main/connectivity/java/dbtools/src/main/java/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DORowSetValue.java1021 } catch (IOException ioException) { in getSequence()
1022 throw new SQLException(ioException.getMessage()); in getSequence()