Home
last modified time | relevance | path

Searched refs:exception_cleanup (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwind-wasm.c77 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
78 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
H A DUnwind-sjlj.c488 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
489 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
H A DUnwindLevel1.c566 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
567 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
H A DUnwind-EHABI.cpp1191 if (exception_object->exception_cleanup != NULL) in _Unwind_DeleteException()
1192 (*exception_object->exception_cleanup)(_URC_FOREIGN_EXCEPTION_CAUGHT, in _Unwind_DeleteException()
/freebsd/contrib/libcxxrt/
H A Dexception.cc384 static void exception_cleanup(_Unwind_Reason_Code reason, in exception_cleanup() function
427 if (e->exception_cleanup) in thread_cleanup()
428 e->exception_cleanup(_URC_FOREIGN_EXCEPTION_CAUGHT, e); in thread_cleanup()
812 ex->unwindHeader.exception_cleanup = exception_cleanup; in __cxa_init_primary_exception()
845 ex->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
1349 if (e->exception_cleanup)
1350 e->exception_cleanup(_URC_FOREIGN_EXCEPTION_CAUGHT, e);
H A Dunwind-itanium.h81 _Unwind_Exception_Cleanup_Fn exception_cleanup; member
H A Dunwind-arm.h65 void (*exception_cleanup)(_Unwind_Reason_Code, struct _Unwind_Exception *); member
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dunwind.h115 void (*exception_cleanup)(_Unwind_Reason_Code, _Unwind_Control_Block *); member
145 _Unwind_Exception_Cleanup_Fn exception_cleanup; member
/freebsd/contrib/llvm-project/libunwind/include/
H A Dunwind_itanium.h23 void (*exception_cleanup)(_Unwind_Reason_Code reason, member
H A Dunwind_arm_ehabi.h38 void (*exception_cleanup)(_Unwind_Reason_Code, _Unwind_Control_Block*); member
/freebsd/lib/libthr/thread/
H A Dthr_exit.c171 curthread->ex.exception_cleanup = thread_unwind_cleanup; in thread_unwind()