Lines Matching refs:m_thread_spec_up
144 if (rhs.m_thread_spec_up != nullptr) in BreakpointOptions()
145 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in BreakpointOptions()
160 if (rhs.m_thread_spec_up != nullptr) in operator =()
161 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
213 if (incoming.m_set_flags.Test(eThreadSpec) && incoming.m_thread_spec_up) { in CopyOverSetOptions()
214 if (!m_thread_spec_up) in CopyOverSetOptions()
215 m_thread_spec_up = in CopyOverSetOptions()
216 std::make_unique<ThreadSpec>(*incoming.m_thread_spec_up); in CopyOverSetOptions()
218 *m_thread_spec_up = *incoming.m_thread_spec_up; in CopyOverSetOptions()
381 if (m_set_flags.Test(eThreadSpec) && m_thread_spec_up) { in SerializeToStructuredData()
383 m_thread_spec_up->SerializeToStructuredData(); in SerializeToStructuredData()
494 return m_thread_spec_up.get(); in GetThreadSpecNoCreate()
498 if (m_thread_spec_up == nullptr) { in GetThreadSpec()
500 m_thread_spec_up = std::make_unique<ThreadSpec>(); in GetThreadSpec()
503 return m_thread_spec_up.get(); in GetThreadSpec()
513 m_thread_spec_up = std::move(thread_spec_up); in SetThreadSpec()
545 if (m_thread_spec_up) in GetDescription()
546 m_thread_spec_up->GetDescription(s, level); in GetDescription()
651 m_thread_spec_up.release(); in Clear()