/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlan.cpp | 25 : m_process(*thread.GetProcess().get()), m_tid(thread.GetID()), in ThreadPlan() 46 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(m_tid); in GetThread() 134 static_cast<void *>(&GetThread()), m_tid, static_cast<uint64_t>(pc), in WillResume() 200 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ValidatePlan() 206 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ValidatePlan() 216 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ShouldStop() 222 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ShouldStop() 232 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in WillStop() 238 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in WillStop() 254 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in DoPlanExplainsStop() [all …]
|
H A D | ThreadPlanBase.cpp | 100 m_tid); in ShouldStop() 130 m_tid, stop_info_sp->GetDescription()); in ShouldStop() 142 m_tid); in ShouldStop() 153 m_tid, stop_info_sp->GetDescription()); in ShouldStop()
|
H A D | ThreadSpec.cpp | 58 if (m_tid != LLDB_INVALID_THREAD_ID) in SerializeToStructuredData() 59 data_dict_sp->AddIntegerItem(GetKey(OptionNames::ThreadID), m_tid); in SerializeToStructuredData() 77 if (m_tid == LLDB_INVALID_THREAD_ID) in TIDMatches() 127 return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || in HasSpecification()
|
H A D | ExecutionContext.cpp | 425 m_tid = rhs.m_tid; in operator =() 438 m_tid = thread_sp->GetID(); in operator =() 440 m_tid = LLDB_INVALID_THREAD_ID; in operator =() 475 m_tid = thread_sp->GetID(); in SetThreadSP() 579 if (m_tid != LLDB_INVALID_THREAD_ID) { in GetThreadSP() 586 thread_sp = process_sp->GetThreadList().FindThreadByID(m_tid); in GetThreadSP()
|
H A D | ThreadPlanTracer.cpp | 37 : m_process(*thread.GetProcess().get()), m_tid(thread.GetID()), in ThreadPlanTracer() 41 : m_process(*thread.GetProcess().get()), m_tid(thread.GetID()), in ThreadPlanTracer() 59 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(m_tid); in GetThread()
|
H A D | ThreadPlanStepUntil.cpp | 57 return_bp->SetThreadID(m_tid); in ThreadPlanStepUntil() 70 until_bp->SetThreadID(m_tid); in ThreadPlanStepUntil()
|
H A D | ThreadPlanCallFunction.cpp | 195 static_cast<void *>(this), m_tid, m_valid, IsPlanComplete()); in DoTakedown() 215 static_cast<void *>(this), m_tid, m_valid, IsPlanComplete()); in DoTakedown()
|
H A D | ThreadList.cpp | 793 : m_thread_list(nullptr), m_tid(LLDB_INVALID_THREAD_ID) { in ExpressionExecutionThreadPusher() 795 m_tid = thread_sp->GetID(); in ExpressionExecutionThreadPusher() 797 m_thread_list->PushExpressionExecutionThread(m_tid); in ExpressionExecutionThreadPusher()
|
H A D | ThreadPlanStepThrough.cpp | 60 return_bp->SetThreadID(m_tid); in ThreadPlanStepThrough()
|
H A D | ThreadPlanRunToAddress.cpp | 72 breakpoint->SetThreadID(m_tid); in SetInitialBreakpoints()
|
H A D | ThreadPlanStepOut.cpp | 147 return_bp->SetThreadID(m_tid); in ThreadPlanStepOut()
|
H A D | ThreadPlanStepRange.cpp | 378 m_next_branch_bp_sp->SetThreadID(m_tid); in SetNextBranchBreakpoint()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ThreadSpec.h | 47 void SetTID(lldb::tid_t tid) { m_tid = tid; } in SetTID() 57 lldb::tid_t GetTID() const { return m_tid; } in GetTID() 64 if (m_tid == LLDB_INVALID_THREAD_ID || thread_id == LLDB_INVALID_THREAD_ID) in TIDMatches() 67 return thread_id == m_tid; in TIDMatches() 124 lldb::tid_t m_tid = LLDB_INVALID_THREAD_ID; variable
|
H A D | ThreadList.h | 51 : m_thread_list(&thread_list), m_tid(tid) { in ExpressionExecutionThreadPusher() 52 m_thread_list->PushExpressionExecutionThread(m_tid); in ExpressionExecutionThreadPusher() 58 if (m_thread_list && m_tid != LLDB_INVALID_THREAD_ID) in ~ExpressionExecutionThreadPusher() 59 m_thread_list->PopExpressionExecutionThread(m_tid); in ~ExpressionExecutionThreadPusher() 64 lldb::tid_t m_tid; variable
|
H A D | ExecutionContext.h | 247 bool HasThreadRef() const { return m_tid != LLDB_INVALID_THREAD_ID; } in HasThreadRef() 256 m_tid = LLDB_INVALID_THREAD_ID; in ClearThread() 266 lldb::tid_t m_tid = LLDB_INVALID_THREAD_ID; ///< The thread ID that this variable
|
H A D | ThreadPlanTracer.h | 57 lldb::tid_t m_tid; variable
|
H A D | ThreadPlan.h | 531 lldb::tid_t m_tid; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/ |
H A D | NativeThreadProtocol.h | 39 lldb::tid_t GetID() const { return m_tid; } in GetID() 61 lldb::tid_t m_tid; variable
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeThreadNetBSD.cpp | 185 info.pl_lwpid = m_tid; in GetName() 216 if (static_cast<lldb::tid_t>(infos[i].l_lid) == m_tid) { in GetName() 221 LLDB_LOG(log, "unable to find lwp {0} in LWP infos", m_tid); in GetName()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeThreadProtocol.cpp | 19 : m_process(process), m_tid(tid) {} in NativeThreadProtocol()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 5135 thread_sp->GetID() == m_tid) in TreeDelegateGenerateChildren() 5143 m_tid = thread_sp->GetID(); in TreeDelegateGenerateChildren() 5181 lldb::user_id_t m_tid = LLDB_INVALID_THREAD_ID; member in ThreadTreeDelegate 6853 thread_changed = tid != m_tid; in WindowDelegateDraw() 6854 m_tid = tid; in WindowDelegateDraw() 6856 if (m_tid != LLDB_INVALID_THREAD_ID) { in WindowDelegateDraw() 6858 m_tid = LLDB_INVALID_THREAD_ID; in WindowDelegateDraw() 7553 lldb::user_id_t m_tid = LLDB_INVALID_THREAD_ID; member in SourceFileWindowDelegate
|