Home
last modified time | relevance | path

Searched refs:m_thread_spec_up (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp36 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()
H A DBreakpointOptions.cpp144 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()
161 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
214 if (!m_thread_spec_up) in CopyOverSetOptions()
215 m_thread_spec_up = in CopyOverSetOptions()
218 *m_thread_spec_up = *incoming.m_thread_spec_up; in CopyOverSetOptions()
494 return m_thread_spec_up.get(); in GetThreadSpecNoCreate()
498 if (m_thread_spec_up == nullptr) { in GetThreadSpec()
503 return m_thread_spec_up.get(); in GetThreadSpec()
545 if (m_thread_spec_up) in GetDescription()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h187 m_thread_spec_up; // Thread for which this watchpoint will take variable
H A DBreakpointOptions.h391 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3705 m_thread_spec_up() {} in StopHook()
3709 m_specifier_sp(rhs.m_specifier_sp), m_thread_spec_up(), in StopHook()
3711 if (rhs.m_thread_spec_up) in StopHook()
3712 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in StopHook()
3720 m_thread_spec_up.reset(specifier); in SetThreadSpecifier()
3769 if (m_thread_spec_up) { in GetDescription()
3772 m_thread_spec_up->GetDescription(&tmp, level); in GetDescription()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1306 ThreadSpec *GetThreadSpecifier() { return m_thread_spec_up.get(); } in GetThreadSpecifier()
1325 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable