Searched refs:SocketError (Results 1 – 5 of 5) sorted by relevance
/external/deqp/framework/delibs/decpp/ |
D | deSocket.cpp | 93 throw SocketError("Setting socket flags failed"); in setFlags() 99 throw SocketError("Listening on socket failed"); in listen() 105 throw SocketError("Connecting socket failed"); in connect() 111 throw SocketError("Socket shutdown failed"); in shutdown() 117 throw SocketError("Socket send channel shutdown failed"); in shutdownSend() 123 throw SocketError("Socket receive channel shutdown failed"); in shutdownReceive() 129 throw SocketError("Closing socket failed"); in close() 136 throw SocketError("Accepting connection to socket failed"); in accept()
|
D | deSocket.hpp | 35 class SocketError : public std::runtime_error class 38 SocketError (const std::string& message) : std::runtime_error(message) {} in SocketError() function in de::SocketError
|
/external/deqp/execserver/tools/ |
D | xsClient.cpp | 44 class SocketError : public Error class 47 SocketError (deSocketResult result, const char* message, const char* file, int line) in SocketError() function in xs::SocketError 78 throw SocketError(result, "send() failed", __FILE__, __LINE__); in sendMessage() 95 throw SocketError(result, "receive() failed", __FILE__, __LINE__); in readBytes()
|
D | xsTest.cpp | 50 class SocketError : public Error class 53 SocketError (deSocketResult result, const char* message, const char* file, int line) in SocketError() function in xs::SocketError 84 throw SocketError(result, "send() failed", __FILE__, __LINE__); in sendMessage() 101 throw SocketError(result, "receive() failed", __FILE__, __LINE__); in readBytes() 795 catch (const SocketError& e) in runClient()
|
/external/deqp/executor/ |
D | xeLocalTcpIpLink.cpp | 88 catch (const de::SocketError&) in start()
|