Lines Matching refs:ec

150                            const boost::beast::error_code& ec, size_t) {  in sendEx()  argument
162 if (ec) in sendEx()
165 ec); in sendEx()
183 [self(shared_from_this())](const boost::system::error_code& ec) { in close() argument
184 if (ec == boost::asio::error::operation_aborted) in close()
188 if (ec) in close()
190 BMCWEB_LOG_ERROR("Error closing websocket {}", ec); in close()
204 const boost::system::error_code& ec) in acceptDone() argument
206 if (ec) in acceptDone()
208 BMCWEB_LOG_ERROR("Error in ws.async_accept {}", ec); in acceptDone()
240 const boost::beast::error_code& ec, size_t bytesRead) in afterRead() argument
242 if (ec) in afterRead()
244 if (ec == boost::beast::error::timeout) in afterRead()
246 BMCWEB_LOG_WARNING("doRead timeout: {}", ec); in afterRead()
248 else if (ec == boost::asio::error::operation_aborted) in afterRead()
250 BMCWEB_LOG_WARNING("doRead operation is aborted: {}", ec); in afterRead()
252 else if (ec != boost::beast::websocket::error::closed && in afterRead()
253 ec != boost::asio::error::eof && in afterRead()
254 ec != boost::asio::ssl::error::stream_truncated) in afterRead()
256 BMCWEB_LOG_ERROR("doRead error {}", ec); in afterRead()
281 const boost::beast::error_code& ec, size_t bytesSent) in afterWrite() argument
285 if (ec) in afterWrite()
287 if (ec == boost::beast::websocket::error::closed) in afterWrite()
293 else if (ec == boost::asio::error::operation_aborted) in afterWrite()
295 BMCWEB_LOG_WARNING("doWrite operation is aborted: {}", ec); in afterWrite()
299 BMCWEB_LOG_ERROR("Error in ws.async_write {}", ec); in afterWrite()