Lines Matching refs:header
219 __cxa_exception const * header = static_cast<__cxa_exception const *>(pExc) - 1; in deleteException() local
221 if (header->exceptionDestructor != &deleteException) in deleteException()
223 … header = reinterpret_cast<__cxa_exception const *>(reinterpret_cast<char const *>(header) - 8); in deleteException()
225 if( !header->exceptionType) in deleteException()
230 OUString unoName( toUNOname( header->exceptionType->name() ) ); in deleteException()
302 void fillUnoException( __cxa_exception * header, uno_Any * pUnoExc, uno_Mapping * pCpp2Uno ) in fillUnoException() argument
304 if (! header) in fillUnoException()
326 if (*reinterpret_cast<void **>(header) == 0) in fillUnoException()
328 header = reinterpret_cast<__cxa_exception *>(reinterpret_cast<char *>(header) + 8); in fillUnoException()
332 OUString unoName( toUNOname( header->exceptionType->name() ) ); in fillUnoException()
353 uno_any_constructAndConvert( pUnoExc, header->adjustedPtr, pExcTypeDescr, pCpp2Uno ); in fillUnoException()