Home | History | Annotate | Download | only in asio

Lines Matching refs:ec

75  * @param ec Set to indicate what error occurred, if any. If the sequence is
90 * asio::error_code ec;
91 * asio::connect(s, r.resolve(q), ec);
92 * if (ec)
99 Iterator begin, asio::error_code& ec);
147 * @param ec Set to indicate what error occurred, if any. If the sequence is
159 * asio::error_code ec;
160 * asio::connect(s, i, end, ec);
161 * if (ec)
168 Iterator begin, Iterator end, asio::error_code& ec);
185 * const asio::error_code& ec,
187 * The @c ec parameter contains the result from the most recent connect
188 * operation. Before the first connection attempt, @c ec is always set to
213 * const asio::error_code& ec,
216 * if (ec) std::cout << "Error: " << ec.message() << std::endl;
249 * const asio::error_code& ec,
251 * The @c ec parameter contains the result from the most recent connect
252 * operation. Before the first connection attempt, @c ec is always set to
259 * @param ec Set to indicate what error occurred, if any. If the sequence is
277 * const asio::error_code& ec,
280 * if (ec) std::cout << "Error: " << ec.message() << std::endl;
289 * asio::error_code ec;
291 * s, r.resolve(q), my_connect_condition(), ec);
292 * if (ec)
304 ConnectCondition connect_condition, asio::error_code& ec);
323 * const asio::error_code& ec,
325 * The @c ec parameter contains the result from the most recent connect
326 * operation. Before the first connection attempt, @c ec is always set to
347 * const asio::error_code& ec,
350 * if (ec) std::cout << "Error: " << ec.message() << std::endl;
385 * const asio::error_code& ec,
387 * The @c ec parameter contains the result from the most recent connect
388 * operation. Before the first connection attempt, @c ec is always set to
395 * @param ec Set to indicate what error occurred, if any. If the sequence is
409 * const asio::error_code& ec,
412 * if (ec) std::cout << "Error: " << ec.message() << std::endl;
422 * asio::error_code ec;
423 * i = asio::connect(s, i, end, my_connect_condition(), ec);
424 * if (ec)
437 asio::error_code& ec);
496 * const asio::error_code& ec,
499 * if (!ec)
508 * const asio::error_code& ec,
566 * const asio::error_code& ec,
569 * if (!ec)
579 * const asio::error_code& ec,
609 * const asio::error_code& ec,
611 * The @c ec parameter contains the result from the most recent connect
612 * operation. Before the first connection attempt, @c ec is always set to
648 * const asio::error_code& ec,
651 * if (ec) std::cout << "Error: " << ec.message() << std::endl;
668 * const asio::error_code& ec,
671 * if (!ec)
682 * const asio::error_code& ec,
685 * if (ec)
721 * const asio::error_code& ec,
723 * The @c ec parameter contains the result from the most recent connect
724 * operation. Before the first connection attempt, @c ec is always set to
756 * const asio::error_code& ec,
759 * if (ec) std::cout << "Error: " << ec.message() << std::endl;
776 * const asio::error_code& ec,
779 * if (!ec)
791 * const asio::error_code& ec,
794 * if (ec)