| /freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBThreadDocstrings.i | 29 ) lldb::SBThread; 82 ) lldb::SBThread::GetThreadID; 92 ) lldb::SBThread::GetIndexID; 97 ) lldb::SBThread::GetQueueName; 102 ) lldb::SBThread::GetQueueID; 120 ) lldb::SBThread::GetQueue; 124 ) lldb::SBThread::StepOver; 130 ) lldb::SBThread::StepInto; 134 ) lldb::SBThread::StepOut; 176 ) lldb::SBThread::Suspend; [all …]
|
| H A D | SBThreadExtensions.i | 1 STRING_EXTENSION_OUTSIDE(SBThread) 3 %extend lldb::SBThread {
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBThread.cpp | 60 SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) { in SBThread() function in SBThread 64 SBThread::SBThread(const ThreadSP &lldb_object_sp) in SBThread() function in SBThread 69 SBThread::SBThread(const SBThread &rhs) { in SBThread() function in SBThread 77 const lldb::SBThread &SBThread::operator=(const SBThread &rhs) { in operator =() 86 SBThread::~SBThread() = default; 130 void SBThread::Clear() { in Clear() 1176 SBThread SBThread::GetThreadFromEvent(const SBEvent &event) { in GetThreadFromEvent() 1182 bool SBThread::operator==(const SBThread &rhs) const { in operator ==() 1189 bool SBThread::operator!=(const SBThread &rhs) const { in operator !=() 1262 SBThread SBThread::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread() [all …]
|
| H A D | SBExecutionContext.cpp | 49 SBExecutionContext::SBExecutionContext(lldb::SBThread thread) in SBExecutionContext() 101 SBThread SBExecutionContext::GetThread() const { in GetThread() 104 SBThread sb_thread; in GetThread()
|
| H A D | SBThreadPlan.cpp | 64 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name) { in SBThreadPlan() 73 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name, in SBThreadPlan() 129 SBThread SBThreadPlan::GetThread() const { in GetThread() 134 return SBThread(thread_plan_sp->GetThread().shared_from_this()); in GetThread() 136 return SBThread(); in GetThread()
|
| H A D | SBTrace.cpp | 46 SBTraceCursor SBTrace::CreateNewCursor(SBError &error, SBThread &thread) { in CreateNewCursor() 104 SBError SBTrace::Start(const SBThread &thread, in Start() 131 SBError SBTrace::Stop(const SBThread &thread) { in Stop()
|
| H A D | SBThreadCollection.cpp | 76 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex() 79 SBThread thread; in GetThreadAtIndex()
|
| H A D | SBQueue.cpp | 137 lldb::SBThread GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() 140 SBThread sb_thread; in GetThreadAtIndex() 283 SBThread SBQueue::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() 286 SBThread th = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
|
| H A D | SBQueueItem.cpp | 92 SBThread SBQueueItem::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread() 95 SBThread result; in GetExtendedBacktraceThread()
|
| H A D | SBProcess.cpp | 201 SBThread SBProcess::GetSelectedThread() const { in GetSelectedThread() 204 SBThread sb_thread; in GetSelectedThread() 217 SBThread SBProcess::CreateOSPluginThread(lldb::tid_t tid, in CreateOSPluginThread() 221 SBThread sb_thread; in CreateOSPluginThread() 343 bool SBProcess::SetSelectedThread(const SBThread &thread) { in SetSelectedThread() 385 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex() 388 SBThread sb_thread; in GetThreadAtIndex() 686 SBThread SBProcess::GetThreadByID(tid_t tid) { in GetThreadByID() 689 SBThread sb_thread; in GetThreadByID() 704 SBThread SBProcess::GetThreadByIndexID(uint32_t index_id) { in GetThreadByIndexID() [all …]
|
| H A D | SBBreakpointOptionCommon.cpp | 63 SBThread sb_thread; in PrivateBreakpointHitCallback()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBThread.h | 26 class LLDB_API SBThread { 38 SBThread(); 40 SBThread(const lldb::SBThread &thread); 42 ~SBThread(); 189 static SBThread GetThreadFromEvent(const SBEvent &event); 193 const lldb::SBThread &operator=(const lldb::SBThread &rhs); 195 bool operator==(const lldb::SBThread &rhs) const; 197 bool operator!=(const lldb::SBThread &rhs) const; 220 SBThread GetExtendedBacktraceThread(const char *type); 226 SBThread GetCurrentExceptionBacktrace(); [all …]
|
| H A D | SBTrace.h | 39 SBTraceCursor CreateNewCursor(SBError &error, SBThread &thread); 110 SBError Start(const SBThread &thread, const SBStructuredData &configuration); 131 SBError Stop(const SBThread &thread);
|
| H A D | SBProcess.h | 97 lldb::SBThread GetThreadAtIndex(size_t index); 99 lldb::SBThread GetThreadByID(lldb::tid_t sb_thread_id); 101 lldb::SBThread GetThreadByIndexID(uint32_t index_id); 103 lldb::SBThread GetSelectedThread() const; 109 lldb::SBThread CreateOSPluginThread(lldb::tid_t tid, lldb::addr_t context); 111 bool SetSelectedThread(const lldb::SBThread &thread); 454 friend class SBThread; variable
|
| H A D | SBThreadPlan.h | 31 SBThreadPlan(lldb::SBThread &thread, const char *class_name); 33 SBThreadPlan(lldb::SBThread &thread, const char *class_name, 71 SBThread GetThread() const;
|
| H A D | SBThreadCollection.h | 32 lldb::SBThread GetThreadAtIndex(size_t idx); 50 friend class SBThread; variable
|
| H A D | SBExecutionContext.h | 38 SBExecutionContext(lldb::SBThread thread); // can't be a const& because 52 SBThread GetThread() const;
|
| H A D | SBQueue.h | 45 lldb::SBThread GetThreadAtIndex(uint32_t); 57 friend class SBThread; variable
|
| H A D | SBFrame.h | 137 lldb::SBThread GetThread() const; 215 friend class SBThread; variable
|
| H A D | SBDefines.h | 109 class LLDB_API SBThread; variable 135 SBThread &thread,
|
| H A D | SBFormat.h | 55 friend class SBThread; variable
|
| H A D | SBQueueItem.h | 41 SBThread GetExtendedBacktraceThread(const char *type);
|
| H A D | SBValue.h | 293 lldb::SBThread GetThread(); 428 friend class SBThread; variable
|
| H A D | SBEvent.h | 73 friend class SBThread; variable
|
| H A D | SBSymbolContext.h | 65 friend class SBThread; variable
|