/external/llvm-project/lldb/source/Target/ |
D | ThreadPlan.cpp | 24 : 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 …]
|
D | ExecutionContext.cpp | 399 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 …]
|
D | ThreadSpec.cpp | 21 : 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()
|
D | ThreadPlanBase.cpp | 99 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()
|
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()
|
D | ThreadPlanStepUntil.cpp | 56 return_bp->SetThreadID(m_tid); in ThreadPlanStepUntil() 69 until_bp->SetThreadID(m_tid); in ThreadPlanStepUntil()
|
D | ThreadPlanCallFunction.cpp | 188 static_cast<void *>(this), m_tid, m_valid, IsPlanComplete()); in DoTakedown() 208 static_cast<void *>(this), m_tid, m_valid, IsPlanComplete()); in DoTakedown()
|
D | ThreadList.cpp | 754 : 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()
|
D | ThreadPlanStepThrough.cpp | 60 return_bp->SetThreadID(m_tid); in ThreadPlanStepThrough()
|
D | ThreadPlanRunToAddress.cpp | 71 breakpoint->SetThreadID(m_tid); in SetInitialBreakpoints()
|
D | ThreadPlanStepOut.cpp | 146 return_bp->SetThreadID(m_tid); in ThreadPlanStepOut()
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessMonitor.cpp | 265 : 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)®s, 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)®s, 0) < 0) { in Execute() 324 if (PTRACE(PT_SETREGS, m_tid, (caddr_t)®s, 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)®s, 0)) < 0) { in Execute() [all …]
|
/external/llvm-project/lldb/include/lldb/Target/ |
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; variable
|
D | ThreadList.h | 50 : 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
|
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; ///< The thread ID that this object refers to in case the variable
|
D | ThreadPlanTracer.h | 65 lldb::tid_t m_tid; variable
|
D | ThreadPlan.h | 542 lldb::tid_t m_tid; variable
|
/external/llvm-project/lldb/source/Plugins/Process/POSIX/ |
D | ProcessMessage.h | 39 : 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/ |
D | SingleStepCheck.h | 31 ::pid_t m_tid; 39 : m_tid(tid), m_original_set(original_set) {} in SingleStepWorkaround()
|
D | SingleStepCheck.cpp | 181 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()
|
D | NativeThreadLinux.cpp | 258 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/ |
D | NativeThreadProtocol.h | 35 lldb::tid_t GetID() const { return m_tid; } in GetID() 52 lldb::tid_t m_tid; variable
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeThreadProtocol.cpp | 19 : m_process(process), m_tid(tid) {} in NativeThreadProtocol()
|
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
D | NativeThreadNetBSD.cpp | 161 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/ |
D | IOHandlerCursesGUI.cpp | 2055 : 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
|