Home | History | Annotate | Download | only in src

Lines Matching refs:unwindHeader

148     (void) __cxa_begin_catch(&exception_header->unwindHeader);
232 setExceptionClass(&exception_header->unwindHeader);
236 exception_header->unwindHeader.exception_cleanup = exception_cleanup_func;
238 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader);
240 _Unwind_RaiseException(&exception_header->unwindHeader);
324 if (isOurExceptionClass(&exception_header->unwindHeader))
337 return &exception_header->unwindHeader;
413 return reinterpret_cast<void*>(exception_header->unwindHeader.barrier_cache.bitpattern[0]);
466 bool native_exception = isOurExceptionClass(&exception_header->unwindHeader);
492 if (isDependentException(&exception_header->unwindHeader))
514 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader);
531 if (!isOurExceptionClass(&exception_header->unwindHeader))
556 bool native_exception = isOurExceptionClass(&exception_header->unwindHeader);
573 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader);
575 _Unwind_RaiseException(&exception_header->unwindHeader);
582 __cxa_begin_catch(&exception_header->unwindHeader);
649 if (!isOurExceptionClass(&exception_header->unwindHeader))
651 if (isDependentException(&exception_header->unwindHeader)) {
698 setDependentExceptionClass(&dep_exception_header->unwindHeader);
700 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup;
702 _Unwind_SjLj_RaiseException(&dep_exception_header->unwindHeader);
704 _Unwind_RaiseException(&dep_exception_header->unwindHeader);
707 __cxa_begin_catch(&dep_exception_header->unwindHeader);