/external/llvm-project/lldb/source/API/ |
D | SBThread.cpp | 53 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 …]
|
D | SBExecutionContext.cpp | 54 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()
|
D | SBThreadCollection.cpp | 81 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()
|
D | SBThreadPlan.cpp | 66 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 …]
|
D | SBQueueItem.cpp | 96 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()
|
D | SBQueue.cpp | 145 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()
|
D | SBProcess.cpp | 210 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/ |
D | SBThread.h | 20 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 …]
|
D | SBProcess.h | 91 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
|
D | SBThreadPlan.h | 29 SBThreadPlan(lldb::SBThread &thread, const char *class_name); 31 SBThreadPlan(lldb::SBThread &thread, const char *class_name, 66 SBThread GetThread() const;
|
D | SBThreadCollection.h | 32 lldb::SBThread GetThreadAtIndex(size_t idx); 50 friend class SBThread; variable
|
D | SBExecutionContext.h | 34 SBExecutionContext(lldb::SBThread thread); // can't be a const& because 48 SBThread GetThread() const;
|
D | SBQueue.h | 47 lldb::SBThread GetThreadAtIndex(uint32_t); 59 friend class SBThread; variable
|
D | SBFrame.h | 128 lldb::SBThread GetThread() const; 193 friend class SBThread; variable
|
D | SBDefines.h | 75 class LLDB_API SBThread; variable 99 SBThread &thread,
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBThread.i | 39 ) 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 …]
|
D | SBThreadPlan.i | 22 ) SBThread; 36 SBThreadPlan (lldb::SBThread &thread, const char *class_name); 80 SBThread
|
D | SBProcess.i | 141 lldb::SBThread 146 lldb::SBThread 151 lldb::SBThread 156 lldb::SBThread 161 lldb::SBThread 165 SetSelectedThread (const lldb::SBThread &thread);
|
D | SBExecutionContext.i | 22 …SBExecutionContext (lldb::SBThread thread); // can't be a const& because SBThread::get() isn't its… 34 SBThread
|
D | SBThreadCollection.i | 34 lldb::SBThread
|
/external/llvm-project/lldb/utils/lui/ |
D | debuggerdriver.py | 44 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/ |
D | TestSafeFuncCalls.py | 37 main_thread = lldb.SBThread() 38 select_thread = lldb.SBThread()
|
/external/llvm-project/lldb/test/API/macosx/thread-names/ |
D | TestInterruptThreadNames.py | 46 main_thread = lldb.SBThread() 47 second_thread = lldb.SBThread() 48 third_thread = lldb.SBThread()
|
/external/llvm-project/lldb/test/API/macosx/queues/ |
D | TestQueues.py | 192 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/ |
D | cli-wrapper-pt.cpp | 111 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()
|