/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBThreadDocstrings.i | 29 ) lldb::SBThread; 34 ) lldb::SBThread::GetStopReasonDataCount; 56 ) lldb::SBThread::GetStopReasonDataAtIndex; 62 ) lldb::SBThread::GetStopReasonExtendedInfoAsJSON; 68 ) lldb::SBThread::GetStopReasonExtendedBacktraces; 73 ) lldb::SBThread::GetStopDescription; 82 ) lldb::SBThread::GetThreadID; 92 ) lldb::SBThread::GetIndexID; 97 ) lldb::SBThread::GetQueueName; 102 ) lldb::SBThread::GetQueueID; [all …]
|
H A D | SBThreadExtensions.i | 1 STRING_EXTENSION_OUTSIDE(SBThread) 3 %extend lldb::SBThread { 12 '''Iterate over all frames in a lldb.SBThread object.''' 16 '''Return the number of frames in a lldb.SBThread object.''' 38 '''An accessor function that returns a frames_access() object which allows lazy frame access from a lldb.SBThread object.''' 42 '''An accessor function that returns a list() that contains all frames in a lldb.SBThread object.'''
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBThread.cpp | 53 const char *SBThread::GetBroadcasterClassName() { in GetBroadcasterClassName() 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; 88 lldb::SBQueue SBThread::GetQueue() const { in GetQueue() 109 bool SBThread::IsValid() const { in IsValid() 113 SBThread::operator bool() const { in operator bool() 130 void SBThread::Clear() { in Clear() [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 | 9 #include "lldb/API/SBThread.h" 64 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name) { 73 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name, 129 SBThread SBThreadPlan::GetThread() const { 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 | 204 SBThread SBProcess::GetSelectedThread() const { in GetSelectedThread() 207 SBThread sb_thread; in GetSelectedThread() 220 SBThread SBProcess::CreateOSPluginThread(lldb::tid_t tid, in CreateOSPluginThread() 224 SBThread sb_thread; in CreateOSPluginThread() 346 bool SBProcess::SetSelectedThread(const SBThread &thread) { in SetSelectedThread() 387 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex() 390 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 | 16 #include "lldb/API/SBThread.h" 63 SBThread sb_thread; in PrivateBreakpointHitCallback()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBThread.h | 1 //===-- SBThread.h ----------------------------------------------*- C++ -*-===// 26 class LLDB_API SBThread { 38 SBThread(); 40 SBThread(const lldb::SBThread &thread); 42 ~SBThread(); 151 /// be allowed to run. If any of the SBThread functions for stepping are 159 /// Likewise the SBThread::Resume() call will again allow the thread to run 189 static SBThread GetThreadFromEvent(const SBEvent &event); 193 const lldb::SBThread [all...] |
H A D | SBTrace.h | 39 SBTraceCursor CreateNewCursor(SBError &error, SBThread &thread); 78 /// SBTrace::Start(const SBThread &thread, const SBStructuredData 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); 595 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; 200 friend class SBThread; global() variable
|
H A D | SBDefines.h | 113 class LLDB_API SBThread; variable 139 SBThread &thread,
|
H A D | SBQueueItem.h | 41 SBThread GetExtendedBacktraceThread(const char *type);
|
H A D | SBValue.h | 311 lldb::SBThread GetThread(); 446 friend class SBThread; variable
|
H A D | SBSymbolContext.h | 65 friend class SBThread; variable
|
H A D | SBEvent.h | 74 friend class SBThread; variable
|
H A D | SBFileSpec.h | 79 friend class SBThread; variable
|