Searched refs:SocketError (Results 1 - 9 of 9) sorted by relevance
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A 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()
|
H A 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/ |
H A 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()
|
H A 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/external/vulkancts/vkscserver/ |
H A D | vksIPC.cpp | 154 catch (const de::SocketError&) in ~ParentImpl() 162 catch (const de::SocketError&) in ~ParentImpl()
|
/third_party/vk-gl-cts/executor/ |
H A D | xeLocalTcpIpLink.cpp | 88 catch (const de::SocketError&) in start()
|
/third_party/node/deps/undici/src/lib/ |
H A D | client.js | 22 SocketError, 447 util.destroy(this, new SocketError('other side closed')) 448 util.destroy(this[kSocket], new SocketError('other side closed')) 852 util.destroy(socket, new SocketError('bad response', util.getSocketInfo(socket))) 858 util.destroy(socket, new SocketError('bad upgrade', util.getSocketInfo(socket))) 1118 util.destroy(this, new SocketError('other side closed', util.getSocketInfo(this))) 1134 const err = this[kError] || new SocketError('closed', util.getSocketInfo(this))
|
/third_party/node/deps/undici/ |
H A D | undici.js | 267 var SocketError = class _SocketError extends UndiciError { 269 __name(this, "SocketError"); 274 this.name = "SocketError"; 358 SocketError, 8324 SocketError, 8664 util.destroy(this, new SocketError("other side closed")); 8665 util.destroy(this[kSocket], new SocketError("other side closed")); 8977 util.destroy(socket, new SocketError("bad response", util.getSocketInfo(socket))); 8981 util.destroy(socket, new SocketError("bad upgrade", util.getSocketInfo(socket))); 9169 util.destroy(this, new SocketError("othe [all...] |
/third_party/rust/crates/nix/src/sys/socket/ |
H A D | sockopt.rs | 462 SocketError,
|
Completed in 17 milliseconds