Lines Matching refs:thrown_object
44 cxa_exception_from_thrown_object(void* thrown_object) in cxa_exception_from_thrown_object() argument
46 return static_cast<__cxa_exception*>(thrown_object) - 1; in cxa_exception_from_thrown_object()
203 void __cxa_free_exception(void *thrown_object) throw() { in __cxa_free_exception() argument
207 ((char *)cxa_exception_from_thrown_object(thrown_object)) - header_offset; in __cxa_free_exception()
259 __cxa_throw(void *thrown_object, std::type_info *tinfo, void (*dest)(void *)) { in __cxa_throw() argument
261 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_throw()
631 __cxa_increment_exception_refcount(void *thrown_object) throw() { in __cxa_increment_exception_refcount() argument
632 if (thrown_object != NULL ) in __cxa_increment_exception_refcount()
634 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_increment_exception_refcount()
648 void __cxa_decrement_exception_refcount(void *thrown_object) throw() { in __cxa_decrement_exception_refcount() argument
649 if (thrown_object != NULL ) in __cxa_decrement_exception_refcount()
651 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_decrement_exception_refcount()
655 exception_header->exceptionDestructor(thrown_object); in __cxa_decrement_exception_refcount()
656 __cxa_free_exception(thrown_object); in __cxa_decrement_exception_refcount()
686 void* thrown_object = thrown_object_from_cxa_exception(exception_header); in __cxa_current_primary_exception() local
687 __cxa_increment_exception_refcount(thrown_object); in __cxa_current_primary_exception()
688 return thrown_object; in __cxa_current_primary_exception()
714 __cxa_rethrow_primary_exception(void* thrown_object) in __cxa_rethrow_primary_exception() argument
716 if ( thrown_object != NULL ) in __cxa_rethrow_primary_exception()
720 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_rethrow_primary_exception()
723 dep_exception_header->primaryException = thrown_object; in __cxa_rethrow_primary_exception()
724 __cxa_increment_exception_refcount(thrown_object); in __cxa_rethrow_primary_exception()