Home | History | Annotate | Download | only in asio

Lines Matching defs:ec

236     asio::error_code ec;
238 this->get_implementation(), buffers, 0, ec);
239 asio::detail::throw_error(ec, "send");
274 asio::error_code ec;
276 this->get_implementation(), buffers, flags, ec);
277 asio::detail::throw_error(ec, "send");
291 * @param ec Set to indicate what error occurred, if any.
301 socket_base::message_flags flags, asio::error_code& ec)
304 this->get_implementation(), buffers, flags, ec);
441 asio::error_code ec;
443 this->get_implementation(), buffers, 0, ec);
444 asio::detail::throw_error(ec, "receive");
482 asio::error_code ec;
484 this->get_implementation(), buffers, flags, ec);
485 asio::detail::throw_error(ec, "receive");
499 * @param ec Set to indicate what error occurred, if any.
509 socket_base::message_flags flags, asio::error_code& ec)
512 this->get_implementation(), buffers, flags, ec);
650 asio::error_code ec;
652 this->get_implementation(), buffers, 0, ec);
653 asio::detail::throw_error(ec, "write_some");
665 * @param ec Set to indicate what error occurred, if any.
675 asio::error_code& ec)
677 return this->get_service().send(this->get_implementation(), buffers, 0, ec);
760 asio::error_code ec;
762 this->get_implementation(), buffers, 0, ec);
763 asio::detail::throw_error(ec, "read_some");
775 * @param ec Set to indicate what error occurred, if any.
786 asio::error_code& ec)
789 this->get_implementation(), buffers, 0, ec);