HomeSort by relevance Sort by last modified time
    Searched refs:handler_type (Results 1 - 3 of 3) sorted by null

  /external/parameter-framework/asio-1.10.6/include/asio/
handler_type.hpp 2 // handler_type.hpp
23 * The handler_type traits class is used for determining the concrete handler
31 struct handler_type struct in namespace:asio
39 struct handler_type<const Handler, Signature> struct in namespace:asio
40 : handler_type<Handler, Signature> {};
43 struct handler_type<volatile Handler, Signature> struct in namespace:asio
44 : handler_type<Handler, Signature> {};
47 struct handler_type<const volatile Handler, Signature> struct in namespace:asio
48 : handler_type<Handler, Signature> {};
51 struct handler_type<const Handler&, Signature struct in namespace:asio
55 struct handler_type<volatile Handler&, Signature> struct in namespace:asio
59 struct handler_type<const volatile Handler&, Signature> struct in namespace:asio
63 struct handler_type<Handler&, Signature> struct in namespace:asio
67 struct handler_type<Handler&&, Signature> struct in namespace:asio
71 struct handler_type<ReturnType(), Signature> struct in namespace:asio
75 struct handler_type<ReturnType(Arg1), Signature> struct in namespace:asio
79 struct handler_type<ReturnType(Arg1, Arg2), Signature> struct in namespace:asio
84 struct handler_type<ReturnType(Arg1, Arg2, Arg3), Signature> struct in namespace:asio
89 struct handler_type<ReturnType(Arg1, Arg2, Arg3, Arg4), Signature> struct in namespace:asio
94 struct handler_type<ReturnType(Arg1, Arg2, Arg3, Arg4, Arg5), Signature> struct in namespace:asio
    [all...]
async_result.hpp 16 #include "asio/handler_type.hpp"
62 typename handler_type<Handler, Signature>::type handler;
63 async_result<typename handler_type<Handler, Signature>::type> result;
70 typename handler_type<Handler, Signature>::type
79 # define ASIO_INITFN_RESULT_TYPE(h, sig) typename ::asio::async_result< typename ::asio::handler_type<h, sig>::type>::type
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
handler_type_requirements.hpp 43 # include "asio/handler_type.hpp"
112 #define ASIO_COMPLETION_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void()) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::zero_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), 0)) == 1, "CompletionHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()(), char(0))> ASIO_UNUSED_TYPEDEF
114 #define ASIO_READ_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, std::size_t)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::two_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), static_cast<const asio::error_code*>(0), static_cast<const std::size_t*>(0))) == 1, "ReadHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()( asio::detail::lvref<const asio::error_code>(), asio::detail::lvref<const std::size_t>()), char(0))> ASIO_UNUSED_TYPEDEF
117 #define ASIO_WRITE_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, std::size_t)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::two_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), static_cast<const asio::error_code*>(0), static_cast<const std::size_t*>(0))) == 1, "WriteHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()( asio::detail::lvref<const asio::error_code>(), asio::detail::lvref<const std::size_t>()), char(0))> ASIO_UNUSED_TYPEDEF
119 #define ASIO_ACCEPT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::one_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), static_cast<const asio::error_code*>(0))) == 1, "AcceptHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()( asio::detail::lvref<const asio::error_code>()), char(0))> ASIO_UNUSED_TYPEDEF
121 #define ASIO_CONNECT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code)) asio_t (…)
    [all...]

Completed in 77 milliseconds