Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadDocstrings.i29 ) 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 DSBThreadExtensions.i1 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 DSBThread.cpp53 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 DSBExecutionContext.cpp49 SBExecutionContext::SBExecutionContext(lldb::SBThread thread) in SBExecutionContext()
101 SBThread SBExecutionContext::GetThread() const { in GetThread()
104 SBThread sb_thread; in GetThread()
H A DSBThreadPlan.cpp9 #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 DSBTrace.cpp46 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 DSBThreadCollection.cpp76 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex()
79 SBThread thread; in GetThreadAtIndex()
H A DSBQueue.cpp137 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 DSBQueueItem.cpp92 SBThread SBQueueItem::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread()
95 SBThread result; in GetExtendedBacktraceThread()
H A DSBProcess.cpp204 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 DSBBreakpointOptionCommon.cpp16 #include "lldb/API/SBThread.h"
63 SBThread sb_thread; in PrivateBreakpointHitCallback()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThread.h1 //===-- 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 DSBTrace.h39 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 DSBProcess.h97 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 DSBThreadPlan.h31 SBThreadPlan(lldb::SBThread &thread, const char *class_name);
33 SBThreadPlan(lldb::SBThread &thread, const char *class_name,
71 SBThread GetThread() const;
H A DSBThreadCollection.h32 lldb::SBThread GetThreadAtIndex(size_t idx);
50 friend class SBThread; variable
H A DSBExecutionContext.h38 SBExecutionContext(lldb::SBThread thread); // can't be a const& because
52 SBThread GetThread() const;
H A DSBQueue.h45 lldb::SBThread GetThreadAtIndex(uint32_t);
57 friend class SBThread; variable
H A DSBFrame.h137 lldb::SBThread GetThread() const;
215 friend class SBThread;
200 friend class SBThread; global() variable
H A DSBDefines.h113 class LLDB_API SBThread; variable
139 SBThread &thread,
H A DSBQueueItem.h41 SBThread GetExtendedBacktraceThread(const char *type);
H A DSBValue.h311 lldb::SBThread GetThread();
446 friend class SBThread; variable
H A DSBSymbolContext.h65 friend class SBThread; variable
H A DSBEvent.h74 friend class SBThread; variable
H A DSBFileSpec.h79 friend class SBThread; variable

12