Home
last modified time | relevance | path

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

123

/external/llvm-project/lldb/source/API/
DSBThread.cpp53 const char *SBThread::GetBroadcasterClassName() { in GetBroadcasterClassName()
54 LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBThread, in GetBroadcasterClassName()
61 SBThread::SBThread() : m_opaque_sp(new ExecutionContextRef()) { in SBThread() function in SBThread
62 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBThread); in SBThread()
65 SBThread::SBThread(const ThreadSP &lldb_object_sp) in SBThread() function in SBThread
67 LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::ThreadSP &), lldb_object_sp); in SBThread()
70 SBThread::SBThread(const SBThread &rhs) : m_opaque_sp() { in SBThread() function in SBThread
71 LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::SBThread &), rhs); in SBThread()
78 const lldb::SBThread &SBThread::operator=(const SBThread &rhs) { in operator =()
79 LLDB_RECORD_METHOD(const lldb::SBThread &, in operator =()
[all …]
DSBExecutionContext.cpp54 SBExecutionContext::SBExecutionContext(lldb::SBThread thread) in SBExecutionContext()
56 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (lldb::SBThread), thread); in SBExecutionContext()
110 SBThread SBExecutionContext::GetThread() const { in GetThread()
111 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBExecutionContext, in GetThread()
114 SBThread sb_thread; in GetThread()
147 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (lldb::SBThread)); in RegisterMethods()
156 LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBExecutionContext, GetThread, in RegisterMethods()
DSBThreadCollection.cpp81 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex()
82 LLDB_RECORD_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex, in GetThreadAtIndex()
85 SBThread thread; in GetThreadAtIndex()
105 LLDB_REGISTER_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex, in RegisterMethods()
DSBThreadPlan.cpp66 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name) { in SBThreadPlan()
67 LLDB_RECORD_CONSTRUCTOR(SBThreadPlan, (lldb::SBThread &, const char *), in SBThreadPlan()
76 SBThreadPlan::SBThreadPlan(lldb::SBThread &sb_thread, const char *class_name, in SBThreadPlan()
78 LLDB_RECORD_CONSTRUCTOR(SBThreadPlan, (lldb::SBThread &, const char *, in SBThreadPlan()
136 SBThread SBThreadPlan::GetThread() const { in GetThread()
137 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBThreadPlan, GetThread); in GetThread()
142 SBThread(thread_plan_sp->GetThread().shared_from_this())); in GetThread()
144 return LLDB_RECORD_RESULT(SBThread()); in GetThread()
464 LLDB_REGISTER_CONSTRUCTOR(SBThreadPlan, (lldb::SBThread &, const char *)); in RegisterMethods()
465 LLDB_REGISTER_CONSTRUCTOR(SBThreadPlan, (lldb::SBThread &, const char *, in RegisterMethods()
[all …]
DSBQueueItem.cpp96 SBThread SBQueueItem::GetExtendedBacktraceThread(const char *type) { in GetExtendedBacktraceThread()
97 LLDB_RECORD_METHOD(lldb::SBThread, SBQueueItem, GetExtendedBacktraceThread, in GetExtendedBacktraceThread()
100 SBThread result; in GetExtendedBacktraceThread()
135 LLDB_REGISTER_METHOD(lldb::SBThread, SBQueueItem, in RegisterMethods()
DSBQueue.cpp145 lldb::SBThread GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
148 SBThread sb_thread; in GetThreadAtIndex()
293 SBThread SBQueue::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
294 LLDB_RECORD_METHOD(lldb::SBThread, SBQueue, GetThreadAtIndex, (uint32_t), in GetThreadAtIndex()
297 SBThread th = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
349 LLDB_REGISTER_METHOD(lldb::SBThread, SBQueue, GetThreadAtIndex, (uint32_t)); in RegisterMethods()
DSBProcess.cpp210 SBThread SBProcess::GetSelectedThread() const { in GetSelectedThread()
211 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBProcess, in GetSelectedThread()
214 SBThread sb_thread; in GetSelectedThread()
227 SBThread SBProcess::CreateOSPluginThread(lldb::tid_t tid, in CreateOSPluginThread()
229 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, CreateOSPluginThread, in CreateOSPluginThread()
232 SBThread sb_thread; in CreateOSPluginThread()
383 bool SBProcess::SetSelectedThread(const SBThread &thread) { in SetSelectedThread()
385 (const lldb::SBThread &), thread); in SetSelectedThread()
429 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex()
430 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t), in GetThreadAtIndex()
[all …]
/external/llvm-project/lldb/include/lldb/API/
DSBThread.h20 class LLDB_API SBThread {
32 SBThread();
34 SBThread(const lldb::SBThread &thread);
36 SBThread(const lldb::ThreadSP &lldb_object_sp);
38 ~SBThread();
182 static SBThread GetThreadFromEvent(const SBEvent &event);
186 const lldb::SBThread &operator=(const lldb::SBThread &rhs);
188 bool operator==(const lldb::SBThread &rhs) const;
190 bool operator!=(const lldb::SBThread &rhs) const;
198 SBThread GetExtendedBacktraceThread(const char *type);
[all …]
DSBProcess.h91 lldb::SBThread GetThreadAtIndex(size_t index);
93 lldb::SBThread GetThreadByID(lldb::tid_t sb_thread_id);
95 lldb::SBThread GetThreadByIndexID(uint32_t index_id);
97 lldb::SBThread GetSelectedThread() const;
103 lldb::SBThread CreateOSPluginThread(lldb::tid_t tid, lldb::addr_t context);
105 bool SetSelectedThread(const lldb::SBThread &thread);
408 friend class SBThread; variable
DSBThreadPlan.h29 SBThreadPlan(lldb::SBThread &thread, const char *class_name);
31 SBThreadPlan(lldb::SBThread &thread, const char *class_name,
66 SBThread GetThread() const;
DSBThreadCollection.h32 lldb::SBThread GetThreadAtIndex(size_t idx);
50 friend class SBThread; variable
DSBExecutionContext.h34 SBExecutionContext(lldb::SBThread thread); // can't be a const& because
48 SBThread GetThread() const;
DSBQueue.h47 lldb::SBThread GetThreadAtIndex(uint32_t);
59 friend class SBThread; variable
DSBFrame.h128 lldb::SBThread GetThread() const;
193 friend class SBThread; variable
DSBDefines.h75 class LLDB_API SBThread; variable
99 SBThread &thread,
/external/llvm-project/lldb/bindings/interface/
DSBThread.i39 ) SBThread;
40 class SBThread
56 SBThread ();
58 SBThread (const lldb::SBThread &thread);
60 ~SBThread();
71 static SBThread
352 operator == (const lldb::SBThread &rhs) const;
355 operator != (const lldb::SBThread &rhs) const;
366 lldb::SBThread
393 lldb::SBThread
[all …]
DSBThreadPlan.i22 ) SBThread;
36 SBThreadPlan (lldb::SBThread &thread, const char *class_name);
80 SBThread
DSBProcess.i141 lldb::SBThread
146 lldb::SBThread
151 lldb::SBThread
156 lldb::SBThread
161 lldb::SBThread
165 SetSelectedThread (const lldb::SBThread &thread);
DSBExecutionContext.i22 …SBExecutionContext (lldb::SBThread thread); // can't be a const& because SBThread::get() isn't its…
34 SBThread
DSBThreadCollection.i34 lldb::SBThread
/external/llvm-project/lldb/utils/lui/
Ddebuggerdriver.py44 lldb.SBThread.GetBroadcasterClassName(),
45 lldb.SBThread.eBroadcastBitStackChanged
47 | lldb.SBThread.eBroadcastBitThreadSuspended
48 | lldb.SBThread.eBroadcastBitThreadResumed
49 | lldb.SBThread.eBroadcastBitSelectedFrameChanged
50 | lldb.SBThread.eBroadcastBitThreadSelected
/external/llvm-project/lldb/test/API/macosx/safe-to-func-call/
DTestSafeFuncCalls.py37 main_thread = lldb.SBThread()
38 select_thread = lldb.SBThread()
/external/llvm-project/lldb/test/API/macosx/thread-names/
DTestInterruptThreadNames.py46 main_thread = lldb.SBThread()
47 second_thread = lldb.SBThread()
48 third_thread = lldb.SBThread()
/external/llvm-project/lldb/test/API/macosx/queues/
DTestQueues.py192 user_initiated_thread = lldb.SBThread()
193 user_interactive_thread = lldb.SBThread()
194 utility_thread = lldb.SBThread()
195 background_thread = lldb.SBThread()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
Dcli-wrapper-pt.cpp111 lldb::SBThread thread = process.GetThreadByIndexID(thread_index_id); in ParseCommandArgThread()
134 lldb::SBThread thread; in DoExecute()
214 lldb::SBThread thread; in DoExecute()
312 lldb::SBThread thread; in DoExecute()
452 lldb::SBThread thread; in DoExecute()

123