Home
last modified time | relevance | path

Searched refs:handler_type (Results 1 – 4 of 4) sorted by relevance

/src/contrib/libcxxrt/
H A Dexception.cc148 } handler_type; typedef
1015 static handler_type check_action_record(_Unwind_Context *context, in check_action_record()
1023 handler_type found = handler_none; in check_action_record()
1035 std::type_info *handler_type = get_type_info_entry(context, lsda, filter); in check_action_record() local
1036 if (check_type_signature(ex, handler_type, adjustedPtr)) in check_action_record()
1048 std::type_info *handler_type = get_type_info_entry(context, lsda, filter--); in check_action_record() local
1049 while (handler_type) in check_action_record()
1051 if (check_type_signature(ex, handler_type, adjustedPtr)) in check_action_record()
1056 handler_type = get_type_info_entry(context, lsda, filter--); in check_action_record()
1062 std::type_info *handler_type = get_type_info_entry(context, lsda, *(type_index++)); in check_action_record() local
[all …]
/src/contrib/kyua/utils/signals/
H A Dprogrammer_fwd.hpp40 typedef void (*handler_type)(const int); typedef
H A Dprogrammer.hpp53 programmer(const int, const handler_type);
H A Dprogrammer.cpp83 signals::programmer::programmer(const int signo, const handler_type handler) : in programmer()