Home
last modified time | relevance | path

Searched refs:FailureType (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgtest_environment_test.cc41 enum FailureType { NO_FAILURE, NON_FATAL_FAILURE, FATAL_FAILURE }; enum
79 void set_failure_in_set_up(FailureType type) { failure_in_set_up_ = type; } in set_failure_in_set_up()
82 FailureType failure_in_set_up_;
101 int RunAllTests(MyEnvironment* env, FailureType failure) { in RunAllTests()
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dcrash_handler.cpp26 if (State->FailureType != Error::UNKNOWN && State->FailureAddress != 0) in __gwp_asan_error_is_mine()
60 if (State->FailureType != Error::UNKNOWN) in __gwp_asan_diagnose_error()
61 return State->FailureType; in __gwp_asan_diagnose_error()
H A Dguarded_pool_allocator.cpp298 State.FailureType = E; in raiseInternallyDetectedError()
311 assert(State.FailureType == Error::UNKNOWN); in raiseInternallyDetectedError()
413 State.FailureType = Error::UNKNOWN; in postCrashReportRecoverableOnly()
H A Dcommon.h155 Error FailureType = Error::UNKNOWN; member
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h226 enum FailureType { kNonfatal, kFatal }; enum
231 virtual void ReportFailure(FailureType type, const char* file, int line,
/freebsd/contrib/googletest/googlemock/src/
H A Dgmock-internal-utils.cc104 void ReportFailure(FailureType type, const char* file, int line, in ReportFailure()