Home
last modified time | relevance | path

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

/external/libcxxabi/src/
Dcxa_exception.cpp43 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()
187 void __cxa_free_exception(void *thrown_object) throw() { in __cxa_free_exception() argument
191 ((char *)cxa_exception_from_thrown_object(thrown_object)) - header_offset; in __cxa_free_exception()
243 __cxa_throw(void *thrown_object, std::type_info *tinfo, void (*dest)(void *)) { in __cxa_throw() argument
245 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_throw()
615 __cxa_increment_exception_refcount(void *thrown_object) throw() { in __cxa_increment_exception_refcount() argument
616 if (thrown_object != NULL ) in __cxa_increment_exception_refcount()
618 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object); in __cxa_increment_exception_refcount()
632 __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.cpp44 void* thrown_object = in demangling_terminate_handler() local
60 if (catch_type->can_catch(thrown_type, thrown_object)) in demangling_terminate_handler()
63 const std::exception* e = static_cast<const std::exception*>(thrown_object); in demangling_terminate_handler()
/external/v8/src/debug/
Ddebug-scopes.cc558 Handle<Object> thrown_object(context->get(Context::THROWN_OBJECT_INDEX), in MaterializeCatchScope() local
562 JSObject::SetOwnPropertyIgnoreAttributes(catch_scope, name, thrown_object, in MaterializeCatchScope()
/external/v8/src/runtime/
Druntime-scopes.cc783 CONVERT_ARG_HANDLE_CHECKED(Object, thrown_object, 1); in RUNTIME_FUNCTION()
788 function, current, scope_info, name, thrown_object); in RUNTIME_FUNCTION()
/external/v8/src/
Dfactory.h312 Handle<Object> thrown_object);
Dfactory.cc995 Handle<Object> thrown_object) { in NewCatchContext() argument
1005 context->set(Context::THROWN_OBJECT_INDEX, *thrown_object); in NewCatchContext()