/external/llvm-project/lldb/test/API/commands/watchpoints/step_over_watchpoint/ |
D | TestStepOverWatchpoint.py | 65 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/ |
D | TestThreadAPI.py | 131 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/ |
D | TestWatchpointCount.py | 37 stop_reason_descr = thread.GetStopDescription(256) 43 stop_reason_descr = thread.GetStopDescription(256)
|
/external/llvm-project/lldb/test/Shell/Driver/Inputs/ |
D | convenience.in | 6 script print(lldb.thread.GetStopDescription(100))
|
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/ |
D | TestMiniDumpNew.py | 124 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/ |
D | sb_thread.py | 12 obj.GetStopDescription(256)
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBThread.i | 128 stop reason.") GetStopDescription; 130 GetStopDescription (char *dst_or_null, size_t dst_len);
|
/external/llvm-project/lldb/test/Shell/Driver/ |
D | TestConvenienceVariables.test | 13 CHECK: script print(lldb.thread.GetStopDescription(100))
|
/external/llvm-project/lldb/test/API/functionalities/tsan/multiple/ |
D | TestTsanMultiple.py | 50 ).process.GetSelectedThread().GetStopDescription(100)
|
/external/llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/ |
D | TestOSPluginStepping.py | 116 … self.assertTrue("step out" in os_thread.GetStopDescription(100), "Completed step out plan")
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | StackFrameRecognizer.h | 42 std::string GetStopDescription() { return m_stop_desc; } in GetStopDescription() function
|
D | Thread.h | 223 std::string GetStopDescription();
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBThread.h | 77 size_t GetStopDescription(char *dst, size_t dst_len);
|
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump/ |
D | TestMiniDump.py | 40 stop_description = thread.GetStopDescription(256)
|
/external/llvm-project/lldb/source/API/ |
D | SBThread.cpp | 314 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/ |
D | lldbutil.py | 807 ) == 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/ |
D | python-typemaps.swig | 127 // typemap for handling an snprintf-like API like SBThread::GetStopDescription.
|
/external/llvm-project/lldb/tools/lldb-vscode/ |
D | JSONUtils.cpp | 893 if (thread.GetStopDescription(description, sizeof(description))) { in CreateThreadStopped()
|
D | lldb-vscode.cpp | 862 if (thread.GetStopDescription(description, sizeof(description))) { in request_exceptionInfo()
|
/external/llvm-project/lldb/source/Target/ |
D | Thread.cpp | 556 std::string Thread::GetStopDescription() { in GetStopDescription() function in Thread 568 recognized_frame_sp->GetStopDescription(); in GetStopDescription()
|
/external/llvm-project/lldb/source/Core/ |
D | FormatEntity.cpp | 1278 std::string stop_description = thread->GetStopDescription(); in Format()
|