Searched refs:thrown_object (Results 1 – 2 of 2) sorted by relevance
45 cxa_exception_from_thrown_object(void* thrown_object) in cxa_exception_from_thrown_object() argument47 return static_cast<__cxa_exception*>(thrown_object) - 1; in cxa_exception_from_thrown_object()170 void __cxa_free_exception (void * thrown_object) throw() { in __cxa_free_exception() argument171 do_free(cxa_exception_from_thrown_object(thrown_object)); in __cxa_free_exception()223 __cxa_throw(void* thrown_object, std::type_info* tinfo, void (*dest)(void*)) in __cxa_throw() argument226 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_throw()597 __cxa_increment_exception_refcount(void* thrown_object) throw() in __cxa_increment_exception_refcount() argument599 if (thrown_object != NULL ) in __cxa_increment_exception_refcount()601 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_increment_exception_refcount()615 __cxa_decrement_exception_refcount(void* thrown_object) throw() in __cxa_decrement_exception_refcount() argument[all …]
43 void* thrown_object = in default_terminate_handler() local59 if (catch_type->can_catch(thrown_type, thrown_object)) in default_terminate_handler()62 const std::exception* e = static_cast<const std::exception*>(thrown_object); in default_terminate_handler()