Home
last modified time | relevance | path

Searched refs:stop_reason_description (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp186 std::string stop_reason_description = in GetStopReasonDescription() local
189 if (!stop_reason_description.size()) { in GetStopReasonDescription()
190 stop_reason_description = "Undefined behavior detected"; in GetStopReasonDescription()
192 stop_reason_description[0] = toupper(stop_reason_description[0]); in GetStopReasonDescription()
193 for (unsigned I = 1; I < stop_reason_description.size(); ++I) in GetStopReasonDescription()
194 if (stop_reason_description[I] == '-') in GetStopReasonDescription()
195 stop_reason_description[I] = ' '; in GetStopReasonDescription()
197 return stop_reason_description; in GetStopReasonDescription()
331 std::string stop_reason_description = GetStopReasonDescription(info); in GetBacktracesFromExtendedStopInfo() local
332 new_thread_sp->SetName(stop_reason_description.c_str()); in GetBacktracesFromExtendedStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp811 std::string stop_reason_description = in NotifyBreakpointHit() local
817 stop_reason_description = issue_description + " detected"; in NotifyBreakpointHit()
819 stop_reason_description); in NotifyBreakpointHit()
866 *thread_sp, stop_reason_description, report)); in NotifyBreakpointHit()