Home
last modified time | relevance | path

Searched refs:m_tid (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlan.cpp25 : 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 DThreadPlanBase.cpp100 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 DThreadSpec.cpp58 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 DExecutionContext.cpp425 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 DThreadPlanTracer.cpp37 : 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 DThreadPlanStepUntil.cpp57 return_bp->SetThreadID(m_tid); in ThreadPlanStepUntil()
70 until_bp->SetThreadID(m_tid); in ThreadPlanStepUntil()
H A DThreadPlanCallFunction.cpp195 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 DThreadList.cpp793 : 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 DThreadPlanStepThrough.cpp60 return_bp->SetThreadID(m_tid); in ThreadPlanStepThrough()
H A DThreadPlanRunToAddress.cpp72 breakpoint->SetThreadID(m_tid); in SetInitialBreakpoints()
H A DThreadPlanStepOut.cpp147 return_bp->SetThreadID(m_tid); in ThreadPlanStepOut()
H A DThreadPlanStepRange.cpp378 m_next_branch_bp_sp->SetThreadID(m_tid); in SetNextBranchBreakpoint()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h47 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 DThreadList.h51 : 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 DExecutionContext.h247 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 DThreadPlanTracer.h57 lldb::tid_t m_tid; variable
H A DThreadPlan.h531 lldb::tid_t m_tid; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h39 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 DNativeThreadNetBSD.cpp185 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 DNativeThreadProtocol.cpp19 : m_process(process), m_tid(tid) {} in NativeThreadProtocol()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5135 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