HomeSort by relevance Sort by last modified time
    Searched defs:non_blocking (Results 1 - 6 of 6) sorted by null

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_ops.hpp 38 non_blocking = user_set_non_blocking | internal_non_blocking, enumerator in enum:asio::detail::socket_ops::__anon34768
reactive_socket_service_base.hpp 133 bool non_blocking(const base_implementation_type& impl) const function in class:asio::detail::reactive_socket_service_base
139 asio::error_code non_blocking(base_implementation_type& impl, function in class:asio::detail::reactive_socket_service_base
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 741 bool non_blocking() const function in class:asio::basic_socket_acceptor
743 return this->get_service().non_blocking(this->get_implementation());
759 void non_blocking(bool mode) function in class:asio::basic_socket_acceptor
762 this->get_service().non_blocking(this->get_implementation(), mode, ec);
763 asio::detail::throw_error(ec, "non_blocking");
779 asio::error_code non_blocking( function in class:asio::basic_socket_acceptor
782 return this->get_service().non_blocking(
816 * @c false, but the current value of @c non_blocking() is @c true, this
839 * @c false, but the current value of @c non_blocking() is @c true, this
    [all...]
basic_socket.hpp 1017 bool non_blocking() const function in class:asio::basic_socket
1035 void non_blocking(bool mode) function in class:asio::basic_socket
1055 asio::error_code non_blocking( function in class:asio::basic_socket
    [all...]
socket_acceptor_service.hpp 189 bool non_blocking(const implementation_type& impl) const function in class:asio::socket_acceptor_service
191 return service_impl_.non_blocking(impl);
195 asio::error_code non_blocking(implementation_type& impl, function in class:asio::socket_acceptor_service
198 return service_impl_.non_blocking(impl, mode, ec);
stream_socket_service.hpp 224 bool non_blocking(const implementation_type& impl) const function in class:asio::stream_socket_service
226 return service_impl_.non_blocking(impl);
230 asio::error_code non_blocking(implementation_type& impl, function in class:asio::stream_socket_service
233 return service_impl_.non_blocking(impl, mode, ec);

Completed in 561 milliseconds