Home
last modified time | relevance | path

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

/external/libcxxabi/src/
Dcxa_exception.cpp44 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
[all …]
Dcxa_noexception.cpp27 __cxa_increment_exception_refcount(void *thrown_object) throw() { in __cxa_increment_exception_refcount() argument
28 if (thrown_object != nullptr) in __cxa_increment_exception_refcount()
33 __cxa_decrement_exception_refcount(void *thrown_object) throw() { in __cxa_decrement_exception_refcount() argument
34 if (thrown_object != nullptr) in __cxa_decrement_exception_refcount()
42 __cxa_rethrow_primary_exception(void* thrown_object) { in __cxa_rethrow_primary_exception() argument
43 if (thrown_object != nullptr) in __cxa_rethrow_primary_exception()
Dcxa_default_handlers.cpp42 void* thrown_object = in demangling_terminate_handler() local
58 if (catch_type->can_catch(thrown_type, thrown_object)) in demangling_terminate_handler()
61 const std::exception* e = static_cast<const std::exception*>(thrown_object); in demangling_terminate_handler()
/external/v8/src/runtime/
Druntime-scopes.cc734 CONVERT_ARG_HANDLE_CHECKED(Object, thrown_object, 0); in RUNTIME_FUNCTION()
738 isolate->factory()->NewCatchContext(current, scope_info, thrown_object); in RUNTIME_FUNCTION()
/external/v8/src/heap/
Dfactory.h386 Handle<Object> thrown_object);
Dfactory.cc1427 Handle<Object> thrown_object) { in NewCatchContext() argument
1435 context->set(Context::THROWN_OBJECT_INDEX, *thrown_object); in NewCatchContext()