Home
last modified time | relevance | path

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

12

/external/llvm-project/lldb/source/Target/
DThreadPlan.cpp24 : m_process(*thread.GetProcess().get()), m_tid(thread.GetID()), in ThreadPlan()
45 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(m_tid); in GetThread()
131 static_cast<void *>(&GetThread()), m_tid, static_cast<uint64_t>(pc), in WillResume()
195 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ValidatePlan()
201 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ValidatePlan()
211 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ShouldStop()
217 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in ShouldStop()
227 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in WillStop()
233 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in WillStop()
249 LLVM_PRETTY_FUNCTION, m_tid, GetThread().GetProtocolID()); in DoPlanExplainsStop()
[all …]
DExecutionContext.cpp399 m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() {} in ExecutionContextRef()
403 m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() { in ExecutionContextRef()
410 m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() { in ExecutionContextRef()
416 m_tid(LLDB_INVALID_THREAD_ID), m_stack_id() { in ExecutionContextRef()
422 m_thread_wp(rhs.m_thread_wp), m_tid(rhs.m_tid), in ExecutionContextRef()
431 m_tid = rhs.m_tid; in operator =()
444 m_tid = thread_sp->GetID(); in operator =()
446 m_tid = LLDB_INVALID_THREAD_ID; in operator =()
481 m_tid = thread_sp->GetID(); in SetThreadSP()
584 if (m_tid != LLDB_INVALID_THREAD_ID) { in GetThreadSP()
[all …]
DThreadSpec.cpp21 : m_index(UINT32_MAX), m_tid(LLDB_INVALID_THREAD_ID), m_name(), in ThreadSpec()
60 if (m_tid != LLDB_INVALID_THREAD_ID) in SerializeToStructuredData()
61 data_dict_sp->AddIntegerItem(GetKey(OptionNames::ThreadID), m_tid); in SerializeToStructuredData()
79 if (m_tid == LLDB_INVALID_THREAD_ID) in TIDMatches()
129 return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || in HasSpecification()
DThreadPlanBase.cpp99 m_tid); in ShouldStop()
129 m_tid, stop_info_sp->GetDescription()); in ShouldStop()
141 m_tid); in ShouldStop()
152 m_tid, stop_info_sp->GetDescription()); in ShouldStop()
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()
DThreadPlanStepUntil.cpp56 return_bp->SetThreadID(m_tid); in ThreadPlanStepUntil()
69 until_bp->SetThreadID(m_tid); in ThreadPlanStepUntil()
DThreadPlanCallFunction.cpp188 static_cast<void *>(this), m_tid, m_valid, IsPlanComplete()); in DoTakedown()
208 static_cast<void *>(this), m_tid, m_valid, IsPlanComplete()); in DoTakedown()
DThreadList.cpp754 : m_thread_list(nullptr), m_tid(LLDB_INVALID_THREAD_ID) { in ExpressionExecutionThreadPusher()
756 m_tid = thread_sp->GetID(); in ExpressionExecutionThreadPusher()
758 m_thread_list->PushExpressionExecutionThread(m_tid); in ExpressionExecutionThreadPusher()
DThreadPlanStepThrough.cpp60 return_bp->SetThreadID(m_tid); in ThreadPlanStepThrough()
DThreadPlanRunToAddress.cpp71 breakpoint->SetThreadID(m_tid); in SetInitialBreakpoints()
DThreadPlanStepOut.cpp146 return_bp->SetThreadID(m_tid); in ThreadPlanStepOut()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.cpp265 : m_tid(tid), m_offset(offset), m_size(size), m_value(value), in ReadRegOperation()
271 lldb::tid_t m_tid; member in ReadRegOperation
282 if ((rc = PTRACE(PT_GETREGS, m_tid, (caddr_t)&regs, 0)) < 0) { in Execute()
304 : m_tid(tid), m_offset(offset), m_value(value), m_result(result) {} in WriteRegOperation()
309 lldb::tid_t m_tid; member in WriteRegOperation
318 if (PTRACE(PT_GETREGS, m_tid, (caddr_t)&regs, 0) < 0) { in Execute()
324 if (PTRACE(PT_SETREGS, m_tid, (caddr_t)&regs, 0) < 0) in Execute()
336 : m_tid(tid), m_offset(offset), m_size(size), m_value(value), in ReadDebugRegOperation()
342 lldb::tid_t m_tid; member in ReadDebugRegOperation
353 if ((rc = PTRACE(PT_GETDBREGS, m_tid, (caddr_t)&regs, 0)) < 0) { in Execute()
[all …]
/external/llvm-project/lldb/include/lldb/Target/
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; variable
DThreadList.h50 : m_thread_list(&thread_list), m_tid(tid) { in ExpressionExecutionThreadPusher()
51 m_thread_list->PushExpressionExecutionThread(m_tid); in ExpressionExecutionThreadPusher()
57 if (m_thread_list && m_tid != LLDB_INVALID_THREAD_ID) in ~ExpressionExecutionThreadPusher()
58 m_thread_list->PopExpressionExecutionThread(m_tid); in ~ExpressionExecutionThreadPusher()
63 lldb::tid_t m_tid; variable
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; ///< The thread ID that this object refers to in case the variable
DThreadPlanTracer.h65 lldb::tid_t m_tid; variable
DThreadPlan.h542 lldb::tid_t m_tid; variable
/external/llvm-project/lldb/source/Plugins/Process/POSIX/
DProcessMessage.h39 : m_tid(LLDB_INVALID_PROCESS_ID), m_kind(eInvalidMessage), in ProcessMessage()
45 lldb::tid_t GetTID() const { return m_tid; } in GetTID()
151 : m_tid(tid), m_kind(kind), in m_tid() function
156 : m_tid(tid), m_kind(kind), in ProcessMessage()
160 lldb::tid_t m_tid; variable
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DSingleStepCheck.h31 ::pid_t m_tid;
39 : m_tid(tid), m_original_set(original_set) {} in SingleStepWorkaround()
DSingleStepCheck.cpp181 if (sched_setaffinity(m_tid, sizeof m_original_set, &m_original_set) != 0) { in ~SingleStepWorkaround()
182 LLDB_LOG(log, "Unable to reset cpu affinity for thread {0}: {1}", m_tid, in ~SingleStepWorkaround()
DNativeThreadLinux.cpp258 m_step_workaround = SingleStepWorkaround::Get(m_tid); in SingleStep()
271 m_tid, nullptr, reinterpret_cast<void *>(data)); in SingleStep()
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeThreadProtocol.h35 lldb::tid_t GetID() const { return m_tid; } in GetID()
52 lldb::tid_t m_tid; variable
/external/llvm-project/lldb/source/Host/common/
DNativeThreadProtocol.cpp19 : m_process(process), m_tid(tid) {} in NativeThreadProtocol()
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeThreadNetBSD.cpp161 info.pl_lwpid = m_tid; in GetName()
190 if (static_cast<lldb::tid_t>(infos[i].l_lid) == m_tid) { in GetName()
195 LLDB_LOG(log, "unable to find lwp {0} in LWP infos", m_tid); in GetName()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp2055 : TreeDelegate(), m_debugger(debugger), m_tid(LLDB_INVALID_THREAD_ID), in ThreadTreeDelegate()
2098 thread_sp->GetID() == m_tid) in TreeDelegateGenerateChildren()
2106 m_tid = thread_sp->GetID(); in TreeDelegateGenerateChildren()
2145 lldb::user_id_t m_tid; member in ThreadTreeDelegate
3470 thread_changed = tid != m_tid; in WindowDelegateDraw()
3471 m_tid = tid; in WindowDelegateDraw()
3473 if (m_tid != LLDB_INVALID_THREAD_ID) { in WindowDelegateDraw()
3475 m_tid = LLDB_INVALID_THREAD_ID; in WindowDelegateDraw()
4162 lldb::user_id_t m_tid; member in SourceFileWindowDelegate

12