Lines Matching refs:CATCH_TRAP
7935 #define CATCH_TRAP() __asm__("int $3\n" : : ) /* NOLINT */ macro
7937 #define CATCH_TRAP() __asm__(".inst 0xd4200000") macro
7944 #define CATCH_TRAP() __asm__("int $3") macro
7946 #define CATCH_TRAP() __asm__(".inst 0xd4200000") macro
7948 #define CATCH_TRAP() __asm__(".inst 0xe7f001f0") macro
7950 #define CATCH_TRAP() __asm__(".inst 0xde01") macro
7958 #define CATCH_TRAP() asm volatile ("int $3") /* NOLINT */ macro
7962 #define CATCH_TRAP() raise(SIGTRAP) macro
7965 #define CATCH_TRAP() __debugbreak() macro
7968 #define CATCH_TRAP() DebugBreak() macro
7972 #ifdef CATCH_TRAP
7973 … #define CATCH_BREAK_INTO_DEBUGGER() []{ if( Catch::isDebuggerActive() ) { CATCH_TRAP(); } }()