Searched refs:referenceCount (Results 1 - 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
H A Dcxa_exception.hpp35 size_t referenceCount; member in struct:__cxxabiv1::__cxa_exception
63 size_t referenceCount; member in struct:__cxxabiv1::__cxa_exception
71 // primaryException instead of referenceCount.
H A Dcxa_exception.cpp233 exception_header->referenceCount = 1; // This is a newly allocated exception, no need for thread safety.
452 static_assert(offsetof(__cxa_exception, referenceCount) == offsetof(__cxa_dependent_exception, primaryException),
498 // Destroy the primary exception only if its referenceCount goes to 0
587 If thrown_object is not null, atomically increment the referenceCount field
599 __sync_add_and_fetch(&exception_header->referenceCount, 1);
604 If thrown_object is not null, atomically decrement the referenceCount field
606 by thrown_object. If the referenceCount drops to zero, destroy and
617 if (__sync_sub_and_fetch(&exception_header->referenceCount, size_t(1)) == 0)
628 caughtExceptions stack. Atomically increment the exception's referenceCount.
660 stored in exc is called. Otherwise the referenceCount store
[all...]
/ndk/sources/cxx-stl/gabi++/src/
H A Dcxxabi.cc431 if (__sync_sub_and_fetch(&header->referenceCount, 1) == 0)
442 __sync_add_and_fetch(&header->referenceCount, 1);
H A Dcxxabi_defines.h279 size_t referenceCount; member in struct:__cxxabiv1::__cxa_exception

Completed in 119 milliseconds