Home
last modified time | relevance | path

Searched refs:SBThread (Results 1 – 25 of 38) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBThread.cpp58 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 DSBExecutionContext.cpp42 SBExecutionContext::SBExecutionContext(lldb::SBThread thread) in SBExecutionContext()
84 SBThread SBExecutionContext::GetThread() const { in GetThread()
85 SBThread sb_thread; in GetThread()
H A DSBThreadPlan.cpp59 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 DSBThreadCollection.cpp62 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex()
63 SBThread thread; in GetThreadAtIndex()
H A DSBQueue.cpp160 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 DSBQueueItem.cpp103 SBThread SBQueueItem::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread()
104 SBThread result; in GetExtendedBacktraceThread()
H A DSBProcess.cpp212 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 DSBBreakpointOptionCommon.cpp65 SBThread sb_thread; in PrivateBreakpointHitCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBThread.h21 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 DSBProcess.h92 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 DSBThreadCollection.h31 lldb::SBThread GetThreadAtIndex(size_t idx);
49 friend class SBThread; variable
H A DSBExecutionContext.h35 SBExecutionContext(lldb::SBThread thread); // can't be a const& because
49 SBThread GetThread() const;
H A DSBQueue.h46 lldb::SBThread GetThreadAtIndex(uint32_t);
58 friend class SBThread; variable
H A DSBThreadPlan.h30 SBThreadPlan(lldb::SBThread &thread, const char *class_name);
64 SBThread GetThread() const;
H A DSBFrame.h127 lldb::SBThread GetThread() const;
192 friend class SBThread; variable
H A DSBDefines.h79 class LLDB_API SBThread; variable
103 SBThread &thread,
H A DSBValue.h290 lldb::SBThread GetThread();
392 friend class SBThread; variable
H A DSBQueueItem.h40 SBThread GetExtendedBacktraceThread(const char *type);
H A DSBEvent.h68 friend class SBThread; variable
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBDebuggerHandleEvents.cpp138 } 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 DMICmdCmdStack.cpp109 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 DMICmnLLDBDebugSessionInfo.cpp211 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 DMICmdCmdExec.cpp363 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 DMICmdCmdThread.cpp92 lldb::SBThread thread = sbProcess.GetSelectedThread(); in Execute()
115 lldb::SBThread thread = sbProcess.GetThreadAtIndex(i); in Execute()
H A DMICmnLLDBDebugSessionInfo.h157 bool MIResponseFormFrameInfo(const lldb::SBThread &vrThread,
162 const lldb::SBThread &vrThread,

12