Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.cpp146 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()
163 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
215 if (!m_thread_spec_up) in CopyOverSetOptions()
216 m_thread_spec_up = in CopyOverSetOptions()
219 *m_thread_spec_up = *incoming.m_thread_spec_up; in CopyOverSetOptions()
495 return m_thread_spec_up.get(); in GetThreadSpecNoCreate()
499 if (m_thread_spec_up == nullptr) { in GetThreadSpec()
504 return m_thread_spec_up.get(); in GetThreadSpec()
546 if (m_thread_spec_up) in GetDescription()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h196 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
/llvm-project-15.0.7/lldb/source/Target/
H A DTarget.cpp3492 m_thread_spec_up() {} in StopHook()
3496 m_specifier_sp(rhs.m_specifier_sp), m_thread_spec_up(), in StopHook()
3498 if (rhs.m_thread_spec_up) in StopHook()
3499 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in StopHook()
3507 m_thread_spec_up.reset(specifier); in SetThreadSpecifier()
3556 if (m_thread_spec_up) { in GetDescription()
3559 m_thread_spec_up->GetDescription(&tmp, level); in GetDescription()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DTarget.h1267 ThreadSpec *GetThreadSpecifier() { return m_thread_spec_up.get(); } in GetThreadSpecifier()
1286 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable