Home
last modified time | relevance | path

Searched refs:stop_description (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/tsan/multiple/
H A DTestTsanMultiple.py47 stop_description = self.dbg.GetSelectedTarget(
51 (stop_description == "Data race detected") or
52 (stop_description == "Use of deallocated memory detected") or
53 (stop_description == "Thread leak detected") or
54 (stop_description == "Use of an uninitialized or destroyed mutex detected") or
55 (stop_description == "Unlock of an unlocked mutex (or by a wrong thread) detected")
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump-new/
H A DTestMiniDumpNew.py121 stop_description = thread.GetStopDescription(256)
122 self.assertIn("SIGSEGV", stop_description)
157 stop_description = thread.GetStopDescription(256)
158 self.assertEqual(stop_description, "")
168 stop_description = thread.GetStopDescription(256)
169 self.assertEqual(stop_description, "")
195 stop_description = thread.GetStopDescription(256)
196 self.assertEqual(stop_description, "")
262 stop_description = thread.GetStopDescription(256)
263 self.assertEqual(stop_description, "")
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/
H A DTestMiniDump.py38 stop_description = thread.GetStopDescription(256)
39 self.assertIn("0xc0000005", stop_description)
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp1267 std::string stop_description = thread->GetStopDescription(); in Format() local
1268 if (!stop_description.empty()) { in Format()
1269 s.PutCString(stop_description); in Format()
1279 std::string stop_description = thread->GetStopDescriptionRaw(); in Format() local
1280 if (!stop_description.empty()) { in Format()
1281 s.PutCString(stop_description); in Format()
H A DIOHandlerCursesGUI.cpp7050 const char *stop_description = stop_info_sp->GetDescription(); in WindowDelegateDraw() local
7051 if (stop_description && stop_description[0]) { in WindowDelegateDraw()
7052 size_t stop_description_len = strlen(stop_description); in WindowDelegateDraw()
7061 thread->GetIndexID(), stop_description); in WindowDelegateDraw()
7203 const char *stop_description = stop_info_sp->GetDescription(); in WindowDelegateDraw() local
7204 if (stop_description && stop_description[0]) { in WindowDelegateDraw()
7205 size_t stop_description_len = strlen(stop_description); in WindowDelegateDraw()
7212 thread->GetIndexID(), stop_description); in WindowDelegateDraw()