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()
89 m_thread_sp->GetSelectedFrame(DoNoSelectMostRelevantFrame); in ExecutionContext()
97 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
103 m_thread_sp = thread->shared_from_this(); in ExecutionContext()
111 m_thread_sp(exe_ctx_ref.GetThreadSP()), in ExecutionContext()
116 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
122 m_thread_sp = exe_ctx_ref_ptr->GetThreadSP(); in ExecutionContext()
130 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
137 m_thread_sp = exe_ctx_ref_ptr->GetThreadSP(); in ExecutionContext()
145 : m_target_sp(exe_ctx_ref.GetTargetSP()), m_process_sp(), m_thread_sp(), in ExecutionContext()
151 m_thread_sp = exe_ctx_ref.GetThreadSP(); in ExecutionContext()
157 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
169 m_thread_sp.reset(); in Clear()
194 else if (m_thread_sp) in GetRegisterContext()
195 return m_thread_sp->GetRegisterContext().get(); in GetRegisterContext()
218 if (m_thread_sp) in GetBestExecutionContextScope()
219 return m_thread_sp.get(); in GetBestExecutionContextScope()
236 assert(m_thread_sp); in GetThreadRef()
237 return *m_thread_sp; in GetThreadRef()
254 m_thread_sp = thread_sp; in SetThreadSP()
277 m_thread_sp = thread->shared_from_this(); in SetThreadPtr()
279 m_thread_sp.reset(); in SetThreadPtr()
296 m_thread_sp.reset(); in SetContext()
306 m_thread_sp.reset(); in SetContext()
312 m_thread_sp = thread_sp; in SetContext()
328 m_thread_sp = frame_sp->CalculateThread(); in SetContext()
329 if (m_thread_sp) { in SetContext()
330 m_process_sp = m_thread_sp->GetProcess(); in SetContext()
342 m_thread_sp.reset(); in SetContext()
350 m_thread_sp = rhs.m_thread_sp; in operator =()
366 if ((m_thread_sp == rhs.m_thread_sp) || in operator ==()
367 (m_thread_sp && rhs.m_thread_sp && in operator ==()
368 m_thread_sp->GetID() == rhs.m_thread_sp->GetID())) { in operator ==()
389 return (HasProcessScope() && ((bool)m_thread_sp && m_thread_sp->IsValid())); in HasThreadScope()