Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
DInstrumentationRuntimeUBSan.cpp188 std::string stop_reason_description = in GetStopReasonDescription() local
191 if (!stop_reason_description.size()) { in GetStopReasonDescription()
192 stop_reason_description = "Undefined behavior detected"; in GetStopReasonDescription()
194 stop_reason_description[0] = toupper(stop_reason_description[0]); in GetStopReasonDescription()
195 for (unsigned I = 1; I < stop_reason_description.size(); ++I) in GetStopReasonDescription()
196 if (stop_reason_description[I] == '-') in GetStopReasonDescription()
197 stop_reason_description[I] = ' '; in GetStopReasonDescription()
199 return stop_reason_description; in GetStopReasonDescription()
329 std::string stop_reason_description = GetStopReasonDescription(info); in GetBacktracesFromExtendedStopInfo() local
330 new_thread_sp->SetName(stop_reason_description.c_str()); in GetBacktracesFromExtendedStopInfo()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp812 std::string stop_reason_description = in NotifyBreakpointHit() local
818 stop_reason_description = issue_description + " detected"; in NotifyBreakpointHit()
820 stop_reason_description); in NotifyBreakpointHit()
867 *thread_sp, stop_reason_description, report)); in NotifyBreakpointHit()