Lines Matching refs:header
319 __cxa_exception *header; in cpp_call() local
321 header = __cxa_get_globals()->caughtExceptions; in cpp_call()
323 header = reinterpret_cast<__cxa_exception *>( __cxa_current_primary_exception() ); in cpp_call()
324 if (header) { in cpp_call()
325 __cxa_decrement_exception_refcount( header ); in cpp_call()
326 header--; in cpp_call()
327 uint64_t exc_class = header->unwindHeader.exception_class in cpp_call()
332 header = reinterpret_cast<__cxa_exception *>( in cpp_call()
333 reinterpret_cast<char *>( header ) - 12 ); in cpp_call()
334 exc_class = header->unwindHeader.exception_class in cpp_call()
337 header = nullptr; in cpp_call()
343 … CPPU_CURRENT_NAMESPACE::fillUnoException( header, *ppUnoExc, pThis->getBridge()->getCpp2Uno() ); in cpp_call()