Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/libcxxrt/
H A Dexception.cc147 } handler_type; typedef
980 static handler_type check_action_record(_Unwind_Context *context, in check_action_record()
988 handler_type found = handler_none; in check_action_record()
1000 std::type_info *handler_type = get_type_info_entry(context, lsda, filter); in check_action_record() local
1001 if (check_type_signature(ex, handler_type, adjustedPtr)) in check_action_record()
1014 while (handler_type) in check_action_record()
1016 if (check_type_signature(ex, handler_type, adjustedPtr)) in check_action_record()
1021 handler_type = get_type_info_entry(context, lsda, filter--); in check_action_record()
1031 if (check_type_signature(ex, handler_type, adjustedPtr)) in check_action_record()
1145 handler_type found_handler = check_action_record(context, &lsda,
[all …]
/freebsd-13.1/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()