Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/commands/watchpoints/step_over_watchpoint/
DTestStepOverWatchpoint.py65 self.assertEquals(thread.GetStopDescription(20), 'watchpoint 1')
70 self.assertEquals(thread.GetStopDescription(20), 'step over')
94 self.assertEquals(thread.GetStopDescription(20), 'watchpoint 2')
99 self.assertEquals(thread.GetStopDescription(20), 'step over')
112 actual_stop_desc = self.thread().GetStopDescription(20)
/external/llvm-project/lldb/test/API/python_api/thread/
DTestThreadAPI.py131 self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 1))
134 self.assertEqual("breakpoint", thread.GetStopDescription(len('breakpoint') + 1))
135 self.assertEqual("break", thread.GetStopDescription(len('break') + 1))
136 self.assertEqual("b", thread.GetStopDescription(len('b') + 1))
139 self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 100))
/external/llvm-project/lldb/test/API/commands/watchpoints/watchpoint_count/
DTestWatchpointCount.py37 stop_reason_descr = thread.GetStopDescription(256)
43 stop_reason_descr = thread.GetStopDescription(256)
/external/llvm-project/lldb/test/Shell/Driver/Inputs/
Dconvenience.in6 script print(lldb.thread.GetStopDescription(100))
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/
DTestMiniDumpNew.py124 stop_description = thread.GetStopDescription(256)
159 stop_description = thread.GetStopDescription(256)
170 stop_description = thread.GetStopDescription(256)
197 stop_description = thread.GetStopDescription(256)
264 stop_description = thread.GetStopDescription(256)
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_thread.py12 obj.GetStopDescription(256)
/external/llvm-project/lldb/bindings/interface/
DSBThread.i128 stop reason.") GetStopDescription;
130 GetStopDescription (char *dst_or_null, size_t dst_len);
/external/llvm-project/lldb/test/Shell/Driver/
DTestConvenienceVariables.test13 CHECK: script print(lldb.thread.GetStopDescription(100))
/external/llvm-project/lldb/test/API/functionalities/tsan/multiple/
DTestTsanMultiple.py50 ).process.GetSelectedThread().GetStopDescription(100)
/external/llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/
DTestOSPluginStepping.py116 … self.assertTrue("step out" in os_thread.GetStopDescription(100), "Completed step out plan")
/external/llvm-project/lldb/include/lldb/Target/
DStackFrameRecognizer.h42 std::string GetStopDescription() { return m_stop_desc; } in GetStopDescription() function
DThread.h223 std::string GetStopDescription();
/external/llvm-project/lldb/include/lldb/API/
DSBThread.h77 size_t GetStopDescription(char *dst, size_t dst_len);
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump/
DTestMiniDump.py40 stop_description = thread.GetStopDescription(256)
/external/llvm-project/lldb/source/API/
DSBThread.cpp314 size_t SBThread::GetStopDescription(char *dst, size_t dst_len) { in GetStopDescription() function in SBThread
315 LLDB_RECORD_CHAR_PTR_METHOD(size_t, SBThread, GetStopDescription, in GetStopDescription()
331 std::string thread_stop_desc = exe_ctx.GetThreadPtr()->GetStopDescription(); in GetStopDescription()
1451 LLDB_REGISTER_CHAR_PTR_METHOD(size_t, SBThread, GetStopDescription); in RegisterMethods()
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbutil.py807 ) == lldb.eStopReasonException and "EXC_BAD_ACCESS" in thread.GetStopDescription(100)
812 return "Exception 0xc0000005" in thread.GetStopDescription(200)
814 return "invalid address" in thread.GetStopDescription(100)
/external/llvm-project/lldb/bindings/python/
Dpython-typemaps.swig127 // typemap for handling an snprintf-like API like SBThread::GetStopDescription.
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp893 if (thread.GetStopDescription(description, sizeof(description))) { in CreateThreadStopped()
Dlldb-vscode.cpp862 if (thread.GetStopDescription(description, sizeof(description))) { in request_exceptionInfo()
/external/llvm-project/lldb/source/Target/
DThread.cpp556 std::string Thread::GetStopDescription() { in GetStopDescription() function in Thread
568 recognized_frame_sp->GetStopDescription(); in GetStopDescription()
/external/llvm-project/lldb/source/Core/
DFormatEntity.cpp1278 std::string stop_description = thread->GetStopDescription(); in Format()