| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/step_over_watchpoint/ |
| H A D | TestStepOverWatchpoint.py | 61 self.assertEquals(thread.GetStopDescription(20), 'watchpoint 1') 66 self.assertEquals(thread.GetStopDescription(20), 'step over') 88 self.assertEquals(thread.GetStopDescription(20), 'watchpoint 2') 93 self.assertEquals(thread.GetStopDescription(20), 'step over') 106 actual_stop_desc = self.thread().GetStopDescription(20)
|
| /llvm-project-15.0.7/lldb/test/API/python_api/thread/ |
| H A D | TestThreadAPI.py | 122 self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 1)) 125 self.assertEqual("breakpoint", thread.GetStopDescription(len('breakpoint') + 1)) 126 self.assertEqual("break", thread.GetStopDescription(len('break') + 1)) 127 self.assertEqual("b", thread.GetStopDescription(len('b') + 1)) 130 self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 100))
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_count/ |
| H A D | TestWatchpointCount.py | 37 stop_reason_descr = thread.GetStopDescription(256) 43 stop_reason_descr = thread.GetStopDescription(256)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump-new/ |
| H A D | TestMiniDumpNew.py | 121 stop_description = thread.GetStopDescription(256) 157 stop_description = thread.GetStopDescription(256) 168 stop_description = thread.GetStopDescription(256) 195 stop_description = thread.GetStopDescription(256) 262 stop_description = thread.GetStopDescription(256)
|
| /llvm-project-15.0.7/lldb/test/Shell/Driver/Inputs/ |
| H A D | convenience.in | 9 script print(lldb.thread.GetStopDescription(100))
|
| /llvm-project-15.0.7/lldb/test/API/macosx/corefile-exception-reason/ |
| H A D | TestCorefileExceptionReason.py | 42 self.assertTrue(thread.GetStopDescription(256) == "ESR_EC_DABORT_EL0 (fault address: 0x0)")
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_thread.py | 12 obj.GetStopDescription(256)
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBThread.i | 131 stop reason.") GetStopDescription; 133 GetStopDescription (char *dst_or_null, size_t dst_len);
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/tsan/multiple/ |
| H A D | TestTsanMultiple.py | 48 ).process.GetSelectedThread().GetStopDescription(100)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestGDBRemoteClient.py | 436 self.assertEqual(process.threads[0].GetStopDescription(100), 464 self.assertEqual(process.threads[0].GetStopDescription(100), 489 self.assertEqual(process.threads[0].GetStopDescription(100),
|
| /llvm-project-15.0.7/lldb/test/Shell/Driver/ |
| H A D | TestConvenienceVariables.test | 19 CHECK: script print(lldb.thread.GetStopDescription(100))
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/ |
| H A D | TestOSPluginStepping.py | 114 self.assertIn("step out", os_thread.GetStopDescription(100), "Completed step out plan")
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | StackFrameRecognizer.h | 42 std::string GetStopDescription() { return m_stop_desc; } in GetStopDescription() function
|
| H A D | Thread.h | 222 std::string GetStopDescription();
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBThread.h | 80 size_t GetStopDescription(char *dst, size_t dst_len);
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/ |
| H A D | TestMiniDump.py | 38 stop_description = thread.GetStopDescription(256)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/ |
| H A D | stack_core_scripted_process.py | 150 stop_reason["data"]["desc"] = self.corefile_thread.GetStopDescription(100)
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbutil.py | 880 ) == lldb.eStopReasonException and "EXC_BAD_ACCESS" in thread.GetStopDescription(100) 885 return "Exception 0xc0000005" in thread.GetStopDescription(200) 887 return "invalid address" in thread.GetStopDescription(100)
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBThread.cpp | 324 size_t SBThread::GetStopDescription(char *dst, size_t dst_len) { in GetStopDescription() function in SBThread 340 std::string thread_stop_desc = exe_ctx.GetThreadPtr()->GetStopDescription(); in GetStopDescription()
|
| /llvm-project-15.0.7/lldb/bindings/lua/ |
| H A D | lua-typemaps.swig | 114 // Typemap for handling a snprintf-like API like SBThread::GetStopDescription.
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Thread.cpp | 548 std::string Thread::GetStopDescription() { in GetStopDescription() function in Thread 560 recognized_frame_sp->GetStopDescription(); in GetStopDescription()
|
| /llvm-project-15.0.7/lldb/bindings/python/ |
| H A D | python-typemaps.swig | 128 // typemap for handling an snprintf-like API like SBThread::GetStopDescription.
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | JSONUtils.cpp | 935 if (thread.GetStopDescription(description, sizeof(description))) { in CreateThreadStopped()
|
| H A D | lldb-vscode.cpp | 915 if (thread.GetStopDescription(description, sizeof(description))) { in request_exceptionInfo()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 1267 std::string stop_description = thread->GetStopDescription(); in Format()
|