Lines Matching refs:message

219 …		OUString message(RTL_CONSTASCII_USTRINGPARAM("acc_socket.cxx:SocketConnection::read: error - "));  in read()  local
220 message += m_socket.getErrorAsString(); in read()
222 IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in read()
236 …OUString message(RTL_CONSTASCII_USTRINGPARAM("acc_socket.cxx:SocketConnection::read: error - conne… in read() local
238 IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in read()
257 … OUString message(RTL_CONSTASCII_USTRINGPARAM("acc_socket.cxx:SocketConnection::write: error - ")); in write() local
258 message += m_socket.getErrorAsString(); in write()
260 IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in write()
272 …OUString message(RTL_CONSTASCII_USTRINGPARAM("acc_socket.cxx:SocketConnection::write: error - conn… in write() local
274 IOException ioException(message, Reference<XInterface>(static_cast<XConnection *>(this))); in write()
343 OUStringBuffer message( 128 ); in init() local
344 message.appendAscii( "acc_socket.cxx:SocketAcceptor::init - error - invalid tcp/ip port " ); in init()
345 message.append( (sal_Int32) m_nPort ); in init()
347 message.makeStringAndClear() , Reference< XInterface> () ); in init()
351 OUStringBuffer message( 128 ); in init() local
352 message.appendAscii( "acc_socket.cxx:SocketAcceptor::init - error - invalid host " ); in init()
353 message.append( m_sSocketName ); in init()
355 message.makeStringAndClear(), Reference< XInterface > () ); in init()
361 OUStringBuffer message( 128 ); in init() local
362 message.appendAscii( "acc_socket.cxx:SocketAcceptor::init - error - couldn't bind on " ); in init()
363 message.append( m_sSocketName ).appendAscii( ":" ).append((sal_Int32)m_nPort); in init()
365 message.makeStringAndClear(), in init()
371 OUStringBuffer message( 128 ); in init() local
372 message.appendAscii( "acc_socket.cxx:SocketAcceptor::init - error - can't listen on " ); in init()
373 message.append( m_sSocketName ).appendAscii( ":" ).append( (sal_Int32) m_nPort); in init()
374 throw ConnectionSetupException( message.makeStringAndClear(),Reference<XInterface>() ); in init()