Searched refs:m_thread_spec_up (Results 1 – 6 of 6) sorted by relevance
36 if (rhs.m_thread_spec_up != nullptr) in WatchpointOptions()37 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in WatchpointOptions()46 if (rhs.m_thread_spec_up != nullptr) in operator =()47 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()104 return m_thread_spec_up.get(); in GetThreadSpecNoCreate()108 if (m_thread_spec_up == nullptr) in GetThreadSpec()109 m_thread_spec_up = std::make_unique<ThreadSpec>(); in GetThreadSpec()111 return m_thread_spec_up.get(); in GetThreadSpec()144 if (m_thread_spec_up) in GetDescription()145 m_thread_spec_up->GetDescription(s, level); in GetDescription()
136 if (rhs.m_thread_spec_up != nullptr) in BreakpointOptions()137 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in BreakpointOptions()152 if (rhs.m_thread_spec_up != nullptr) in operator =()153 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()205 if (incoming.m_set_flags.Test(eThreadSpec) && incoming.m_thread_spec_up) { in CopyOverSetOptions()206 if (!m_thread_spec_up) in CopyOverSetOptions()207 m_thread_spec_up = in CopyOverSetOptions()208 std::make_unique<ThreadSpec>(*incoming.m_thread_spec_up); in CopyOverSetOptions()210 *m_thread_spec_up = *incoming.m_thread_spec_up; in CopyOverSetOptions()373 if (m_set_flags.Test(eThreadSpec) && m_thread_spec_up) { in SerializeToStructuredData()[all …]
187 m_thread_spec_up; // Thread for which this watchpoint will take variable
391 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable
3693 m_thread_spec_up() {} in StopHook()3697 m_specifier_sp(rhs.m_specifier_sp), m_thread_spec_up(), in StopHook()3699 if (rhs.m_thread_spec_up) in StopHook()3700 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in StopHook()3708 m_thread_spec_up.reset(specifier); in SetThreadSpecifier()3757 if (m_thread_spec_up) { in GetDescription()3760 m_thread_spec_up->GetDescription(&tmp, level); in GetDescription()
1319 ThreadSpec *GetThreadSpecifier() { return m_thread_spec_up.get(); } in GetThreadSpecifier()1338 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable