Searched refs:SocketError (Results 1 – 5 of 5) sorted by relevance
/third_party/vk-gl-cts/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
|
/third_party/vk-gl-cts/execserver/tools/ |
D | xsClient.cpp | 45 class SocketError : public Error class 48 SocketError (deSocketResult result, const char* message, const char* file, int line) in SocketError() function in xs::SocketError 79 throw SocketError(result, "send() failed", __FILE__, __LINE__); in sendMessage() 96 throw SocketError(result, "receive() failed", __FILE__, __LINE__); in readBytes()
|
D | xsTest.cpp | 51 class SocketError : public Error class 54 SocketError (deSocketResult result, const char* message, const char* file, int line) in SocketError() function in xs::SocketError 85 throw SocketError(result, "send() failed", __FILE__, __LINE__); in sendMessage() 102 throw SocketError(result, "receive() failed", __FILE__, __LINE__); in readBytes() 796 catch (const SocketError& e) in runClient()
|
/third_party/vk-gl-cts/executor/ |
D | xeLocalTcpIpLink.cpp | 88 catch (const de::SocketError&) in start()
|