Searched refs:unexpected_handler (Results 1 – 7 of 7) sorted by relevance
22 typedef void(__cdecl* unexpected_handler)();23 unexpected_handler __cdecl set_unexpected(unexpected_handler _NewUnexpectedHandler) throw();24 unexpected_handler __cdecl _get_unexpected();31 unexpected_handler set_unexpected(unexpected_handler func) noexcept { return ::set_unexpected(func); }33 unexpected_handler get_unexpected() noexcept { return ::_get_unexpected(); }
15 static constinit std::unexpected_handler __unexpected_handler = nullptr;18 unexpected_handler set_unexpected(unexpected_handler func) noexcept {22 unexpected_handler get_unexpected() noexcept { return __libcpp_atomic_load(&__unexpected_handler); }
22 using unexpected_handler = void (*)(); variable23 _LIBCPP_EXPORTED_FROM_ABI unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT;24 _LIBCPP_EXPORTED_FROM_ABI unexpected_handler get_unexpected() _NOEXCEPT;
40 typedef void (*unexpected_handler)();41 unexpected_handler set_unexpected(unexpected_handler f ) noexcept;42 unexpected_handler get_unexpected() noexcept;
57 typedef void (*unexpected_handler)(); typedef111 unexpected_handler unexpectedHandler;
164 unexpected_handler unexpectedHandler;207 unexpected_handler unexpectedHandler;374 static atomic<unexpected_handler> unexpectedHandler = std::terminate;1483 unexpected_handler set_unexpected(unexpected_handler f) _LIBCXXRT_NOEXCEPT1486 unexpected_handler old = info->unexpectedHandler;1508 unexpected_handler set_unexpected(unexpected_handler f) _LIBCXXRT_NOEXCEPT1583 unexpected_handler get_unexpected() _LIBCXXRT_NOEXCEPT
3020 SYMBOL(unexpected_handler, std::, <exception>)