• Home
  • Raw
  • Download

Lines Matching refs:thrown_object

45 cxa_exception_from_thrown_object(void* thrown_object)  in cxa_exception_from_thrown_object()  argument
47 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() argument
171 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() argument
226 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_throw()
599 __cxa_increment_exception_refcount(void* thrown_object) throw() in __cxa_increment_exception_refcount() argument
601 if (thrown_object != NULL ) in __cxa_increment_exception_refcount()
603 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_increment_exception_refcount()
617 __cxa_decrement_exception_refcount(void* thrown_object) throw() in __cxa_decrement_exception_refcount() argument
619 if (thrown_object != NULL ) in __cxa_decrement_exception_refcount()
621 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_decrement_exception_refcount()
625 exception_header->exceptionDestructor(thrown_object); in __cxa_decrement_exception_refcount()
626 __cxa_free_exception(thrown_object); in __cxa_decrement_exception_refcount()
658 void* thrown_object = thrown_object_from_cxa_exception(exception_header); in __cxa_current_primary_exception() local
659 __cxa_increment_exception_refcount(thrown_object); in __cxa_current_primary_exception()
660 return thrown_object; in __cxa_current_primary_exception()
686 __cxa_rethrow_primary_exception(void* thrown_object) in __cxa_rethrow_primary_exception() argument
688 if ( thrown_object != NULL ) in __cxa_rethrow_primary_exception()
692 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_rethrow_primary_exception()
695 dep_exception_header->primaryException = thrown_object; in __cxa_rethrow_primary_exception()
696 __cxa_increment_exception_refcount(thrown_object); in __cxa_rethrow_primary_exception()