Home
last modified time | relevance | path

Searched refs:thrown_object (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_exception.cpp45 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()
597 __cxa_increment_exception_refcount(void* thrown_object) throw() in __cxa_increment_exception_refcount() argument
599 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 …]
Dcxa_default_handlers.cpp43 void* thrown_object = in default_terminate_handler() local
59 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()