Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBThread.i131 stop reason.") GetStopDescription;
133 GetStopDescription (char *dst_or_null, size_t dst_len);
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h43 std::string GetStopDescription() { return m_stop_desc; } in GetStopDescription() function
H A DThread.h222 std::string GetStopDescription();
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBThread.h80 size_t GetStopDescription(char *dst, size_t dst_len);
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py792 ) == lldb.eStopReasonException and "EXC_BAD_ACCESS" in thread.GetStopDescription(100)
797 return "Exception 0xc0000005" in thread.GetStopDescription(200)
799 return "invalid address" in thread.GetStopDescription(100)
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/bindings/lua/
H A Dlua-typemaps.swig114 // Typemap for handling a snprintf-like API like SBThread::GetStopDescription.
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DThread.cpp559 std::string Thread::GetStopDescription() { in GetStopDescription() function in Thread
571 recognized_frame_sp->GetStopDescription(); in GetStopDescription()
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-typemaps.swig128 // typemap for handling an snprintf-like API like SBThread::GetStopDescription.
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp938 if (thread.GetStopDescription(description, sizeof(description))) { in CreateThreadStopped()
H A Dlldb-vscode.cpp918 if (thread.GetStopDescription(description, sizeof(description))) { in request_exceptionInfo()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp1326 std::string stop_description = thread->GetStopDescription(); in Format()