/ndk/sources/cxx-stl/gabi++/src/ |
personality.cc | 57 if (version != 1 || unwind_exception == 0 || context == 0) { 68 scanEHTable(results, actions, native_exception, unwind_exception, context); 72 __cxa_exception* exception_header = reinterpret_cast<__cxa_exception*>(unwind_exception+1)-1; 78 saveDataToBarrierCache(unwind_exception, context, results); 82 return continueUnwinding(unwind_exception, context); 92 __cxa_exception* exception_header = reinterpret_cast<__cxa_exception*>(unwind_exception+1)-1; 98 loadDataFromBarrierCache(unwind_exception, results); 100 scanEHTable(results, actions, native_exception, unwind_exception, context); 103 call_terminate(unwind_exception); variable 106 setRegisters(unwind_exception, context, results) 118 prepareBeginCleanup(unwind_exception); variable [all...] |
call_unexpected.cc | 188 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg); local 189 __cxa_exception* header = reinterpret_cast<__cxa_exception*>(unwind_exception+1)-1; 190 bool native_exception = unwind_exception->exception_class == __gxx_exception_class; 193 __cxa_begin_catch(unwind_exception); // unexpected is also a handler 204 uint32_t count = unwind_exception->barrier_cache.bitpattern[1]; 205 uint32_t stride = unwind_exception->barrier_cache.bitpattern[3]; 207 unwind_exception->barrier_cache.bitpattern[4]); 209 __cxa_begin_catch(unwind_exception); // unexpected is also a handler 251 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg); 252 if (unwind_exception == 0) [all...] |
/external/libcxxabi/src/ |
cxa_handlers.cpp | 93 _Unwind_Exception* unwind_exception = variable 96 (unwind_exception->exception_class & get_vendor_and_language) ==
|
cxa_default_handlers.cpp | 36 _Unwind_Exception* unwind_exception = local 39 (unwind_exception->exception_class & get_vendor_and_language) == 44 unwind_exception->exception_class == kOurDependentExceptionClass ?
|
cxa_exception.cpp | 66 cxa_exception_from_exception_unwind_exception(_Unwind_Exception* unwind_exception) 68 return cxa_exception_from_thrown_object(unwind_exception + 1 ); 79 static void setExceptionClass(_Unwind_Exception* unwind_exception) { 80 unwind_exception->exception_class = kOurExceptionClass; 83 static void setDependentExceptionClass(_Unwind_Exception* unwind_exception) { 84 unwind_exception->exception_class = kOurDependentExceptionClass; 88 static bool isOurExceptionClass(const _Unwind_Exception* unwind_exception) { 89 return (unwind_exception->exception_class & get_vendor_and_language) == 93 static bool isDependentException(_Unwind_Exception* unwind_exception) { 94 return (unwind_exception->exception_class & 0xFF) == 0x01 276 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(unwind_arg); local 388 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(unwind_arg); local [all...] |
cxa_personality.cpp | 307 call_terminate(bool native_exception, _Unwind_Exception* unwind_exception) 309 __cxa_begin_catch(unwind_exception); 313 __cxa_exception* exception_header = (__cxa_exception*)(unwind_exception+1) - 1; 342 _Unwind_Exception* unwind_exception) 347 call_terminate(native_exception, unwind_exception); 362 _Unwind_Exception* unwind_exception) 367 call_terminate(native_exception, unwind_exception); 388 call_terminate(native_exception, unwind_exception); 409 void* adjustedPtr, _Unwind_Exception* unwind_exception) 414 call_terminate(false, unwind_exception); 1168 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg); local [all...] |
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
cxa_handlers.cpp | 93 _Unwind_Exception* unwind_exception = variable 96 (unwind_exception->exception_class & get_vendor_and_language) ==
|
cxa_default_handlers.cpp | 36 _Unwind_Exception* unwind_exception = local 39 (unwind_exception->exception_class & get_vendor_and_language) == 44 unwind_exception->exception_class == kOurDependentExceptionClass ?
|
cxa_exception.cpp | 66 cxa_exception_from_exception_unwind_exception(_Unwind_Exception* unwind_exception) 68 return cxa_exception_from_thrown_object(unwind_exception + 1 ); 79 static void setExceptionClass(_Unwind_Exception* unwind_exception) { 80 unwind_exception->exception_class = kOurExceptionClass; 83 static void setDependentExceptionClass(_Unwind_Exception* unwind_exception) { 84 unwind_exception->exception_class = kOurDependentExceptionClass; 88 static bool isOurExceptionClass(const _Unwind_Exception* unwind_exception) { 89 return (unwind_exception->exception_class & get_vendor_and_language) == 93 static bool isDependentException(_Unwind_Exception* unwind_exception) { 94 return (unwind_exception->exception_class & 0xFF) == 0x01 276 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(unwind_arg); local 388 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(unwind_arg); local [all...] |
cxa_personality.cpp | 304 call_terminate(bool native_exception, _Unwind_Exception* unwind_exception) 306 __cxa_begin_catch(unwind_exception); 310 __cxa_exception* exception_header = (__cxa_exception*)(unwind_exception+1) - 1; 339 _Unwind_Exception* unwind_exception) 344 call_terminate(native_exception, unwind_exception); 359 _Unwind_Exception* unwind_exception) 364 call_terminate(native_exception, unwind_exception); 385 call_terminate(native_exception, unwind_exception); 406 void* adjustedPtr, _Unwind_Exception* unwind_exception) 411 call_terminate(false, unwind_exception); 1195 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg); local [all...] |