Home
last modified time | relevance | path

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

/external/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()
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
[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()
/external/chromium_org/v8/src/
Dfactory.h242 Handle<Object> thrown_object);
Dfactory.cc739 Handle<Object> thrown_object) { in NewCatchContext() argument
748 context->set(Context::THROWN_OBJECT_INDEX, *thrown_object); in NewCatchContext()
Druntime.cc9113 CONVERT_ARG_HANDLE_CHECKED(Object, thrown_object, 1); in RUNTIME_FUNCTION()
9125 function, current, name, thrown_object); in RUNTIME_FUNCTION()
11900 Handle<Object> thrown_object(context->get(Context::THROWN_OBJECT_INDEX), in MaterializeCatchScope() local
11906 Runtime::DefineObjectProperty(catch_scope, name, thrown_object, NONE), in MaterializeCatchScope()