Home
last modified time | relevance | path

Searched refs:GetStopDescription (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/step_over_watchpoint/
H A DTestStepOverWatchpoint.py61 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 DTestThreadAPI.py122 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 DTestWatchpointCount.py37 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 DTestMiniDumpNew.py121 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 Dconvenience.in9 script print(lldb.thread.GetStopDescription(100))
/llvm-project-15.0.7/lldb/test/API/macosx/corefile-exception-reason/
H A DTestCorefileExceptionReason.py42 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 Dsb_thread.py12 obj.GetStopDescription(256)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBThread.i131 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 DTestTsanMultiple.py48 ).process.GetSelectedThread().GetStopDescription(100)
/llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/
H A DTestGDBRemoteClient.py436 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 DTestConvenienceVariables.test19 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 DTestOSPluginStepping.py114 self.assertIn("step out", os_thread.GetStopDescription(100), "Completed step out plan")
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h42 std::string GetStopDescription() { return m_stop_desc; } in GetStopDescription() function
H A DThread.h222 std::string GetStopDescription();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBThread.h80 size_t GetStopDescription(char *dst, size_t dst_len);
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/
H A DTestMiniDump.py38 stop_description = thread.GetStopDescription(256)
/llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/
H A Dstack_core_scripted_process.py150 stop_reason["data"]["desc"] = self.corefile_thread.GetStopDescription(100)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py880 ) == 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 DSBThread.cpp324 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 Dlua-typemaps.swig114 // Typemap for handling a snprintf-like API like SBThread::GetStopDescription.
/llvm-project-15.0.7/lldb/source/Target/
H A DThread.cpp548 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 Dpython-typemaps.swig128 // typemap for handling an snprintf-like API like SBThread::GetStopDescription.
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp935 if (thread.GetStopDescription(description, sizeof(description))) { in CreateThreadStopped()
H A Dlldb-vscode.cpp915 if (thread.GetStopDescription(description, sizeof(description))) { in request_exceptionInfo()
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp1267 std::string stop_description = thread->GetStopDescription(); in Format()