Searched refs:referenceCount (Results 1 - 4 of 4) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
H A D | cxa_exception.hpp | 35 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 D | cxa_exception.cpp | 233 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 D | cxxabi.cc | 431 if (__sync_sub_and_fetch(&header->referenceCount, 1) == 0) 442 __sync_add_and_fetch(&header->referenceCount, 1);
|
H A D | cxxabi_defines.h | 279 size_t referenceCount; member in struct:__cxxabiv1::__cxa_exception
|
Completed in 119 milliseconds