Home
last modified time | relevance | path

Searched refs:GetStopReasonDataCount (Results 1 – 14 of 14) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/postmortem/netbsd-core/
DTestNetBSDCore.py156 self.assertEqual(thread.GetStopReasonDataCount(), 1)
182 self.assertEqual(thread.GetStopReasonDataCount(), 1)
190 self.assertEqual(thread.GetStopReasonDataCount(), 1)
214 self.assertEqual(thread.GetStopReasonDataCount(), 1)
222 self.assertEqual(thread.GetStopReasonDataCount(), 1)
/external/llvm-project/lldb/bindings/interface/
DSBThreadPlan.i56 See also GetStopReasonDataAtIndex().") GetStopReasonDataCount;
58 GetStopReasonDataCount();
DSBThread.i87 See also GetStopReasonDataAtIndex().") GetStopReasonDataCount;
89 GetStopReasonDataCount();
/external/llvm-project/lldb/test/API/functionalities/signal/raise/
DTestRaise.py95 thread.GetStopReasonDataCount() >= 1,
149 thread.GetStopReasonDataCount() >= 1,
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_thread.py10 obj.GetStopReasonDataCount()
/external/llvm-project/lldb/test/API/functionalities/signal/handle-segv/
DTestHandleSegv.py39 thread.GetStopReasonDataCount() >= 1,
/external/llvm-project/lldb/test/API/functionalities/signal/handle-abrt/
DTestHandleAbort.py43 thread.GetStopReasonDataCount() >= 1,
/external/llvm-project/lldb/source/API/
DSBThreadPlan.cpp123 size_t SBThreadPlan::GetStopReasonDataCount() { in GetStopReasonDataCount() function in SBThreadPlan
124 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBThreadPlan, GetStopReasonDataCount); in GetStopReasonDataCount()
473 LLDB_REGISTER_METHOD(size_t, SBThreadPlan, GetStopReasonDataCount, ()); in RegisterMethods()
DSBThread.cpp155 size_t SBThread::GetStopReasonDataCount() { in GetStopReasonDataCount() function in SBThread
156 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBThread, GetStopReasonDataCount); in GetStopReasonDataCount()
1367 LLDB_REGISTER_METHOD(size_t, SBThread, GetStopReasonDataCount, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBThreadPlan.h46 size_t GetStopReasonDataCount();
DSBThread.h52 size_t GetStopReasonDataCount();
/external/llvm-project/lldb/test/API/functionalities/signal/
DTestSendSignal.py93 thread.GetStopReasonDataCount() >= 1,
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbinline.py128 for i in range(0, thread.GetStopReasonDataCount(), 2):
/external/llvm-project/lldb/tools/lldb-vscode/
DVSCode.cpp246 const auto num = thread.GetStopReasonDataCount(); in GetExceptionBPFromStopReason()