Lines Matching refs:m_thread_sp
20 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {} in ExecutionContext()
26 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
32 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
38 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
44 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
51 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
58 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
65 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
72 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
80 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
86 m_thread_sp = m_process_sp->GetThreadList().GetSelectedThread(); in ExecutionContext()
87 if (m_thread_sp) in ExecutionContext()
88 m_frame_sp = m_thread_sp->GetSelectedFrame(); in ExecutionContext()
96 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
102 m_thread_sp = thread->shared_from_this(); in ExecutionContext()
110 m_thread_sp(exe_ctx_ref.GetThreadSP()), in ExecutionContext()
115 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
121 m_thread_sp = exe_ctx_ref_ptr->GetThreadSP(); in ExecutionContext()
129 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
136 m_thread_sp = exe_ctx_ref_ptr->GetThreadSP(); in ExecutionContext()
144 : m_target_sp(exe_ctx_ref.GetTargetSP()), m_process_sp(), m_thread_sp(), in ExecutionContext()
150 m_thread_sp = exe_ctx_ref.GetThreadSP(); in ExecutionContext()
156 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
168 m_thread_sp.reset(); in Clear()
193 else if (m_thread_sp) in GetRegisterContext()
194 return m_thread_sp->GetRegisterContext().get(); in GetRegisterContext()
217 if (m_thread_sp) in GetBestExecutionContextScope()
218 return m_thread_sp.get(); in GetBestExecutionContextScope()
235 assert(m_thread_sp); in GetThreadRef()
236 return *m_thread_sp; in GetThreadRef()
253 m_thread_sp = thread_sp; in SetThreadSP()
276 m_thread_sp = thread->shared_from_this(); in SetThreadPtr()
278 m_thread_sp.reset(); in SetThreadPtr()
295 m_thread_sp.reset(); in SetContext()
305 m_thread_sp.reset(); in SetContext()
311 m_thread_sp = thread_sp; in SetContext()
327 m_thread_sp = frame_sp->CalculateThread(); in SetContext()
328 if (m_thread_sp) { in SetContext()
329 m_process_sp = m_thread_sp->GetProcess(); in SetContext()
341 m_thread_sp.reset(); in SetContext()
349 m_thread_sp = rhs.m_thread_sp; in operator =()
365 if ((m_thread_sp == rhs.m_thread_sp) || in operator ==()
366 (m_thread_sp && rhs.m_thread_sp && in operator ==()
367 m_thread_sp->GetID() == rhs.m_thread_sp->GetID())) { in operator ==()
388 return (HasProcessScope() && ((bool)m_thread_sp && m_thread_sp->IsValid())); in HasThreadScope()