Lines Matching refs:m_thread_spec_up
146 if (rhs.m_thread_spec_up != nullptr) in BreakpointOptions()
147 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in BreakpointOptions()
162 if (rhs.m_thread_spec_up != nullptr) in operator =()
163 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
214 if (incoming.m_set_flags.Test(eThreadSpec) && incoming.m_thread_spec_up) { in CopyOverSetOptions()
215 if (!m_thread_spec_up) in CopyOverSetOptions()
216 m_thread_spec_up = in CopyOverSetOptions()
217 std::make_unique<ThreadSpec>(*incoming.m_thread_spec_up); in CopyOverSetOptions()
219 *m_thread_spec_up = *incoming.m_thread_spec_up; in CopyOverSetOptions()
382 if (m_set_flags.Test(eThreadSpec) && m_thread_spec_up) { in SerializeToStructuredData()
384 m_thread_spec_up->SerializeToStructuredData(); in SerializeToStructuredData()
495 return m_thread_spec_up.get(); in GetThreadSpecNoCreate()
499 if (m_thread_spec_up == nullptr) { in GetThreadSpec()
501 m_thread_spec_up = std::make_unique<ThreadSpec>(); in GetThreadSpec()
504 return m_thread_spec_up.get(); in GetThreadSpec()
514 m_thread_spec_up = std::move(thread_spec_up); in SetThreadSpec()
546 if (m_thread_spec_up) in GetDescription()
547 m_thread_spec_up->GetDescription(s, level); in GetDescription()
652 m_thread_spec_up.release(); in Clear()