Home
last modified time | relevance | path

Searched refs:m_thread_wp (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/lldb/source/Target/
DStopInfo.cpp31 : m_thread_wp(thread.shared_from_this()), in StopInfo()
38 ThreadSP thread_sp(m_thread_wp.lock()); in IsValid()
45 ThreadSP thread_sp(m_thread_wp.lock()); in MakeStopInfoValid()
53 ThreadSP thread_sp(m_thread_wp.lock()); in HasTargetRunSinceMe()
105 ThreadSP thread_sp(m_thread_wp.lock()); in StoreBPInfo()
136 ThreadSP thread_sp(m_thread_wp.lock()); in ShouldStopSynchronous()
165 ThreadSP thread_sp(m_thread_wp.lock()); in DoShouldNotify()
186 ThreadSP thread_sp(m_thread_wp.lock()); in GetDescription()
264 ThreadSP thread_sp(m_thread_wp.lock()); in PerformAction()
651 ThreadSP thread_sp(m_thread_wp.lock()); in ShouldStopSynchronous()
[all …]
DExecutionContext.cpp398 : m_target_wp(), m_process_wp(), m_thread_wp(), in ExecutionContextRef()
402 : m_target_wp(), m_process_wp(), m_thread_wp(), in ExecutionContextRef()
409 : m_target_wp(), m_process_wp(), m_thread_wp(), in ExecutionContextRef()
415 : m_target_wp(), m_process_wp(), m_thread_wp(), in ExecutionContextRef()
422 m_thread_wp(rhs.m_thread_wp), m_tid(rhs.m_tid), in ExecutionContextRef()
430 m_thread_wp = rhs.m_thread_wp; in operator =()
442 m_thread_wp = thread_sp; in operator =()
480 m_thread_wp = thread_sp; in SetThreadSP()
582 lldb::ThreadSP thread_sp(m_thread_wp.lock()); in GetThreadSP()
592 m_thread_wp = thread_sp; in GetThreadSP()
DStackFrame.cpp56 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
82 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
108 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
/external/llvm-project/lldb/include/lldb/Target/
DStopInfo.h32 void SetThread(const lldb::ThreadSP &thread_sp) { m_thread_wp = thread_sp; } in SetThread()
34 lldb::ThreadSP GetThread() const { return m_thread_wp.lock(); } in GetThread()
161 lldb::ThreadWP m_thread_wp; // The thread corresponding to the stop reason. variable
DExecutionContext.h255 m_thread_wp.reset(); in ClearThread()
265 mutable lldb::ThreadWP m_thread_wp; ///< A weak reference to a thread variable
DStackFrame.h125 lldb::ThreadSP GetThread() const { return m_thread_wp.lock(); } in GetThread()
499 lldb::ThreadWP m_thread_wp;
/external/llvm-project/lldb/include/lldb/Expression/
DMaterializer.h52 m_thread_wp = frame_sp->GetThread(); in Dematerializer()
58 lldb::ThreadWP m_thread_wp; variable
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextThreadMemory.cpp22 : RegisterContext(thread, 0), m_thread_wp(thread.shared_from_this()), in RegisterContextThreadMemory()
28 ThreadSP thread_sp(m_thread_wp.lock()); in UpdateRegisterContext()
DRegisterContextThreadMemory.h89 lldb::ThreadWP m_thread_wp; variable
DStopInfoMachException.cpp39 ExecutionContext exe_ctx(m_thread_wp.lock()); in GetDescription()
/external/llvm-project/lldb/source/Expression/
DMaterializer.cpp1399 lldb::ThreadSP thread_sp = m_thread_wp.lock(); in Dematerialize()