HomeSort by relevance Sort by last modified time
    Searched defs:thrown_object (Results 1 - 4 of 4) sorted by null

  /external/libcxxabi/src/
cxa_default_handlers.cpp 43 void* thrown_object = local
59 if (catch_type->can_catch(thrown_type, thrown_object))
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
cxa_exception.cpp 45 cxa_exception_from_thrown_object(void* thrown_object)
47 return static_cast<__cxa_exception*>(thrown_object) - 1;
170 void __cxa_free_exception (void * thrown_object) throw() {
171 do_free(cxa_exception_from_thrown_object(thrown_object));
223 __cxa_throw(void* thrown_object, std::type_info* tinfo, void (*dest)(void*))
226 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
590 If thrown_object is not null, atomically increment the referenceCount field
592 by thrown_object.
594 Requires: If thrown_object is not NULL, it is a native exception.
597 __cxa_increment_exception_refcount(void* thrown_object) throw(
656 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_default_handlers.cpp 43 void* thrown_object = local
59 if (catch_type->can_catch(thrown_type, thrown_object))
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
cxa_exception.cpp 45 cxa_exception_from_thrown_object(void* thrown_object)
47 return static_cast<__cxa_exception*>(thrown_object) - 1;
170 void __cxa_free_exception (void * thrown_object) throw() {
171 do_free(cxa_exception_from_thrown_object(thrown_object));
223 __cxa_throw(void* thrown_object, std::type_info* tinfo, void (*dest)(void*))
226 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
590 If thrown_object is not null, atomically increment the referenceCount field
592 by thrown_object.
594 Requires: If thrown_object is not NULL, it is a native exception.
597 __cxa_increment_exception_refcount(void* thrown_object) throw(
656 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
    [all...]

Completed in 279 milliseconds