Searched refs:exceptionType (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/opencsd/decoder/source/etmv4/ |
H A D | trc_pkt_elem_etmv4i.cpp | 730 if(exception_info.exceptionType < 0x10) in exceptionInfo() 731 oss << " " << ARv8Excep[exception_info.exceptionType] << ";"; in exceptionInfo() 738 if(exception_info.exceptionType < 0x20) in exceptionInfo() 739 oss << " " << MExcep[exception_info.exceptionType] << ";"; in exceptionInfo() 740 else if((exception_info.exceptionType >= 0x208) && (exception_info.exceptionType <= 0x3EF)) in exceptionInfo() 741 oss << " IRQ" << (int)(exception_info.exceptionType - 0x200) << ";"; in exceptionInfo()
|
H A D | trc_pkt_decode_etmv4i.cpp | 398 m_curr_packet_in->exception_info.exceptionType) == 0) in decodePacket()
|
/freebsd/contrib/libcxxrt/ |
H A D | exception.cc | 205 std::type_info *exceptionType; member 343 dynamic_cast<const __class_type_info*>(ex->exceptionType); in terminate_with_diagnostics() 356 const char *mangled = ex->exceptionType->name(); in terminate_with_diagnostics() 807 ex->exceptionType = tinfo; in __cxa_init_primary_exception() 843 ex->exceptionType = original->exceptionType; in __cxa_rethrow_primary_exception() 969 const std::type_info *ex_type = ex ? ex->exceptionType : 0; in check_type_signature() 1402 return ex ? ex->exceptionType : 0;
|
H A D | cxxabi.h | 107 std::type_info *exceptionType; member
|
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/ |
H A D | trc_pkt_types_etmv4.h | 230 uint32_t exceptionType:10; //!< exception number member
|
H A D | trc_pkt_elem_etmv4i.h | 455 exception_info.exceptionType = excep_type; in setExceptionInfo()
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 2716 #define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) \ argument 2718 …INEINFO, CATCH_INTERNAL_STRINGIFY(expr) ", " CATCH_INTERNAL_STRINGIFY(exceptionType), resultDispos… 2724 catch( exceptionType const& ) { \ 3768 #define INTERNAL_CATCH_THROWS_MATCHES( macroName, exceptionType, resultDisposition, matcher, ... ) \ argument 3770 …, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__) ", " CATCH_INTERNAL_STRINGIFY(exceptionType) ", " CATCH_IN… 3776 catch( exceptionType const& ex ) { \ 17205 …ine CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_REQUIRE_THROWS… argument 17208 …IRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CATCH_REQUIRE_T… argument 17219 …define CATCH_CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_CHECK_THROWS_… argument 17222 …HECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CATCH_CHECK_TH… argument [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 1143 for (auto exceptionType : info.ExceptionSpec.Exceptions) { in VisitFunctionProtoType() local 1144 QualType newExceptionType = recurse(exceptionType); in VisitFunctionProtoType() 1148 if (newExceptionType.getAsOpaquePtr() != exceptionType.getAsOpaquePtr()) in VisitFunctionProtoType() 1447 for (auto exceptionType : info.ExceptionSpec.Exceptions) { in VisitFunctionType() local 1448 QualType newExceptionType = exceptionType.substObjCTypeArgs( in VisitFunctionType() 1453 if (newExceptionType.getAsOpaquePtr() != exceptionType.getAsOpaquePtr()) in VisitFunctionType()
|