| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBThread.cpp | 58 SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) {} in SBThread() function in SBThread 60 SBThread::SBThread(const ThreadSP &lldb_object_sp) in SBThread() function in SBThread 63 SBThread::SBThread(const SBThread &rhs) in SBThread() function in SBThread 70 const lldb::SBThread &SBThread::operator=(const SBThread &rhs) { in operator =() 79 SBThread::~SBThread() {} in ~SBThread() 1171 bool SBThread::Resume() { in Resume() 1376 SBThread SBThread::GetThreadFromEvent(const SBEvent &event) { in GetThreadFromEvent() 1380 bool SBThread::operator==(const SBThread &rhs) const { in operator ==() 1385 bool SBThread::operator!=(const SBThread &rhs) const { in operator !=() 1426 SBThread SBThread::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread() [all …]
|
| H A D | SBExecutionContext.cpp | 42 SBExecutionContext::SBExecutionContext(lldb::SBThread thread) in SBExecutionContext() 84 SBThread SBExecutionContext::GetThread() const { in GetThread() 85 SBThread sb_thread; in GetThread()
|
| H A D | SBThreadPlan.cpp | 59 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name) { in SBThreadPlan() 91 SBThread SBThreadPlan::GetThread() const { in GetThread() 93 return SBThread(m_opaque_sp->GetThread().shared_from_this()); in GetThread() 95 return SBThread(); in GetThread()
|
| H A D | SBThreadCollection.cpp | 62 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex() 63 SBThread thread; in GetThreadAtIndex()
|
| H A D | SBQueue.cpp | 160 lldb::SBThread GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() 163 SBThread sb_thread; in GetThreadAtIndex() 310 SBThread SBQueue::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() 311 SBThread th = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
|
| H A D | SBQueueItem.cpp | 103 SBThread SBQueueItem::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread() 104 SBThread result; in GetExtendedBacktraceThread()
|
| H A D | SBProcess.cpp | 212 SBThread SBProcess::GetSelectedThread() const { in GetSelectedThread() 215 SBThread sb_thread; in GetSelectedThread() 233 SBThread SBProcess::CreateOSPluginThread(lldb::tid_t tid, in CreateOSPluginThread() 237 SBThread sb_thread; in CreateOSPluginThread() 400 bool SBProcess::SetSelectedThread(const SBThread &thread) { in SetSelectedThread() 450 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex() 453 SBThread sb_thread; in GetThreadAtIndex() 811 SBThread SBProcess::GetThreadByID(tid_t tid) { in GetThreadByID() 812 SBThread sb_thread; in GetThreadByID() 834 SBThread SBProcess::GetThreadByIndexID(uint32_t index_id) { in GetThreadByIndexID() [all …]
|
| H A D | SBBreakpointOptionCommon.cpp | 65 SBThread sb_thread; in PrivateBreakpointHitCallback()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBThread.h | 21 class LLDB_API SBThread { 33 SBThread(); 35 SBThread(const lldb::SBThread &thread); 37 SBThread(const lldb::ThreadSP &lldb_object_sp); 39 ~SBThread(); 181 static SBThread GetThreadFromEvent(const SBEvent &event); 185 const lldb::SBThread &operator=(const lldb::SBThread &rhs); 187 bool operator==(const lldb::SBThread &rhs) const; 189 bool operator!=(const lldb::SBThread &rhs) const; 197 SBThread GetExtendedBacktraceThread(const char *type); [all …]
|
| H A D | SBProcess.h | 92 lldb::SBThread GetThreadAtIndex(size_t index); 94 lldb::SBThread GetThreadByID(lldb::tid_t sb_thread_id); 96 lldb::SBThread GetThreadByIndexID(uint32_t index_id); 98 lldb::SBThread GetSelectedThread() const; 106 lldb::SBThread CreateOSPluginThread(lldb::tid_t tid, lldb::addr_t context); 108 bool SetSelectedThread(const lldb::SBThread &thread); 437 friend class SBThread; variable
|
| H A D | SBThreadCollection.h | 31 lldb::SBThread GetThreadAtIndex(size_t idx); 49 friend class SBThread; variable
|
| H A D | SBExecutionContext.h | 35 SBExecutionContext(lldb::SBThread thread); // can't be a const& because 49 SBThread GetThread() const;
|
| H A D | SBQueue.h | 46 lldb::SBThread GetThreadAtIndex(uint32_t); 58 friend class SBThread; variable
|
| H A D | SBThreadPlan.h | 30 SBThreadPlan(lldb::SBThread &thread, const char *class_name); 64 SBThread GetThread() const;
|
| H A D | SBFrame.h | 127 lldb::SBThread GetThread() const; 192 friend class SBThread; variable
|
| H A D | SBDefines.h | 79 class LLDB_API SBThread; variable 103 SBThread &thread,
|
| H A D | SBValue.h | 290 lldb::SBThread GetThread(); 392 friend class SBThread; variable
|
| H A D | SBQueueItem.h | 40 SBThread GetExtendedBacktraceThread(const char *type);
|
| H A D | SBEvent.h | 68 friend class SBThread; variable
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| H A D | MICmnLLDBDebuggerHandleEvents.cpp | 138 } else if (lldb::SBThread::EventIsThreadEvent(vEvent)) { in HandleEvent() 514 case lldb::SBThread::eBroadcastBitStackChanged: in HandleEventSBThread() 518 case lldb::SBThread::eBroadcastBitThreadSuspended: in HandleEventSBThread() 522 case lldb::SBThread::eBroadcastBitThreadResumed: in HandleEventSBThread() 525 case lldb::SBThread::eBroadcastBitSelectedFrameChanged: in HandleEventSBThread() 528 case lldb::SBThread::eBroadcastBitThreadSelected: in HandleEventSBThread() 556 lldb::SBThread thread = lldb::SBThread::GetThreadFromEvent(vEvent); in HandleEventSBThreadSuspended() 590 lldb::SBThread thread = lldb::SBThread::GetThreadFromEvent(vEvent); in HandleEventSBThreadBitStackChanged() 1512 lldb::SBThread thread; in UpdateSelectedThread() 1520 lldb::SBThread planThread; in UpdateSelectedThread() [all …]
|
| H A D | MICmdCmdStack.cpp | 109 lldb::SBThread thread = (nThreadId != UINT64_MAX) in Execute() 219 lldb::SBThread sbThread = sbProcess.GetSelectedThread(); in Execute() 352 lldb::SBThread thread = (nThreadId != UINT64_MAX) in Execute() 557 lldb::SBThread thread = (nThreadId != UINT64_MAX) in Execute() 744 lldb::SBThread thread = (nThreadId != UINT64_MAX) in Execute() 915 lldb::SBThread thread = (nThreadId != UINT64_MAX) in Execute() 1056 lldb::SBThread sbThread = rSessionInfo.GetProcess().GetSelectedThread(); in Execute()
|
| H A D | MICmnLLDBDebugSessionInfo.cpp | 211 lldb::SBThread thread = GetProcess().GetThreadByIndexID(vThreadIdx); in GetThreadFrames() 359 const SMICmdData &vCmdData, const lldb::SBThread &vrThread, in MIResponseFormThreadInfo() 362 lldb::SBThread &rThread = const_cast<lldb::SBThread &>(vrThread); in MIResponseFormThreadInfo() 554 const lldb::SBThread &vrThread, const MIuint vnLevel, in MIResponseFormFrameInfo() 557 lldb::SBThread &rThread = const_cast<lldb::SBThread &>(vrThread); in MIResponseFormFrameInfo()
|
| H A D | MICmdCmdExec.cpp | 363 lldb::SBThread sbThread = rSessionInfo.GetProcess().GetThreadByIndexID(nThreadId); in Execute() 483 lldb::SBThread sbThread = in Execute() 605 lldb::SBThread sbThread = in Execute() 729 lldb::SBThread sbThread = in Execute() 849 lldb::SBThread sbThread = in Execute()
|
| H A D | MICmdCmdThread.cpp | 92 lldb::SBThread thread = sbProcess.GetSelectedThread(); in Execute() 115 lldb::SBThread thread = sbProcess.GetThreadAtIndex(i); in Execute()
|
| H A D | MICmnLLDBDebugSessionInfo.h | 157 bool MIResponseFormFrameInfo(const lldb::SBThread &vrThread, 162 const lldb::SBThread &vrThread,
|