Lines Matching refs:thrown_object

43 cxa_exception_from_thrown_object(void* thrown_object)  in cxa_exception_from_thrown_object()  argument
45 return static_cast<__cxa_exception*>(thrown_object) - 1; in cxa_exception_from_thrown_object()
201 void __cxa_free_exception(void *thrown_object) throw() { in __cxa_free_exception() argument
205 ((char *)cxa_exception_from_thrown_object(thrown_object)) - header_offset; in __cxa_free_exception()
257 __cxa_throw(void *thrown_object, std::type_info *tinfo, void (*dest)(void *)) { in __cxa_throw() argument
259 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_throw()
629 __cxa_increment_exception_refcount(void *thrown_object) throw() { in __cxa_increment_exception_refcount() argument
630 if (thrown_object != NULL ) in __cxa_increment_exception_refcount()
632 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_increment_exception_refcount()
646 void __cxa_decrement_exception_refcount(void *thrown_object) throw() { in __cxa_decrement_exception_refcount() argument
647 if (thrown_object != NULL ) in __cxa_decrement_exception_refcount()
649 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_decrement_exception_refcount()
653 exception_header->exceptionDestructor(thrown_object); in __cxa_decrement_exception_refcount()
654 __cxa_free_exception(thrown_object); in __cxa_decrement_exception_refcount()
684 void* thrown_object = thrown_object_from_cxa_exception(exception_header); in __cxa_current_primary_exception() local
685 __cxa_increment_exception_refcount(thrown_object); in __cxa_current_primary_exception()
686 return thrown_object; in __cxa_current_primary_exception()
712 __cxa_rethrow_primary_exception(void* thrown_object) in __cxa_rethrow_primary_exception() argument
714 if ( thrown_object != NULL ) in __cxa_rethrow_primary_exception()
718 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_rethrow_primary_exception()
721 dep_exception_header->primaryException = thrown_object; in __cxa_rethrow_primary_exception()
722 __cxa_increment_exception_refcount(thrown_object); in __cxa_rethrow_primary_exception()