• Home
  • Raw
  • Download

Lines Matching refs:m_thread_sp

20     : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() {}  in ExecutionContext()
24 m_thread_sp(rhs.m_thread_sp), m_frame_sp(rhs.m_frame_sp) {} in ExecutionContext()
28 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
34 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
40 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
46 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
53 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
60 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
67 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
74 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
82 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
88 m_thread_sp = m_process_sp->GetThreadList().GetSelectedThread(); in ExecutionContext()
89 if (m_thread_sp) in ExecutionContext()
90 m_frame_sp = m_thread_sp->GetSelectedFrame(); in ExecutionContext()
98 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
104 m_thread_sp = thread->shared_from_this(); in ExecutionContext()
112 m_thread_sp(exe_ctx_ref.GetThreadSP()), in ExecutionContext()
117 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
123 m_thread_sp = exe_ctx_ref_ptr->GetThreadSP(); in ExecutionContext()
131 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
138 m_thread_sp = exe_ctx_ref_ptr->GetThreadSP(); in ExecutionContext()
146 : m_target_sp(exe_ctx_ref.GetTargetSP()), m_process_sp(), m_thread_sp(), in ExecutionContext()
152 m_thread_sp = exe_ctx_ref.GetThreadSP(); in ExecutionContext()
158 : m_target_sp(), m_process_sp(), m_thread_sp(), m_frame_sp() { in ExecutionContext()
170 m_thread_sp.reset(); in Clear()
195 else if (m_thread_sp) in GetRegisterContext()
196 return m_thread_sp->GetRegisterContext().get(); in GetRegisterContext()
219 if (m_thread_sp) in GetBestExecutionContextScope()
220 return m_thread_sp.get(); in GetBestExecutionContextScope()
237 assert(m_thread_sp); in GetThreadRef()
238 return *m_thread_sp; in GetThreadRef()
255 m_thread_sp = thread_sp; in SetThreadSP()
278 m_thread_sp = thread->shared_from_this(); in SetThreadPtr()
280 m_thread_sp.reset(); in SetThreadPtr()
297 m_thread_sp.reset(); in SetContext()
307 m_thread_sp.reset(); in SetContext()
313 m_thread_sp = thread_sp; in SetContext()
329 m_thread_sp = frame_sp->CalculateThread(); in SetContext()
330 if (m_thread_sp) { in SetContext()
331 m_process_sp = m_thread_sp->GetProcess(); in SetContext()
343 m_thread_sp.reset(); in SetContext()
351 m_thread_sp = rhs.m_thread_sp; in operator =()
367 if ((m_thread_sp == rhs.m_thread_sp) || in operator ==()
368 (m_thread_sp && rhs.m_thread_sp && in operator ==()
369 m_thread_sp->GetID() == rhs.m_thread_sp->GetID())) { in operator ==()
390 return (HasProcessScope() && ((bool)m_thread_sp && m_thread_sp->IsValid())); in HasThreadScope()