Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Breakpoint/
DWatchpointOptions.cpp31 m_callback_is_synchronous(false), m_thread_spec_up() {} in WatchpointOptions()
37 m_thread_spec_up() { in WatchpointOptions()
38 if (rhs.m_thread_spec_up != nullptr) in WatchpointOptions()
39 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in WatchpointOptions()
48 if (rhs.m_thread_spec_up != nullptr) in operator =()
49 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
106 return m_thread_spec_up.get(); in GetThreadSpecNoCreate()
110 if (m_thread_spec_up == nullptr) in GetThreadSpec()
111 m_thread_spec_up = std::make_unique<ThreadSpec>(); in GetThreadSpec()
113 return m_thread_spec_up.get(); in GetThreadSpec()
[all …]
DBreakpointOptions.cpp126 m_enabled(true), m_one_shot(false), m_ignore_count(0), m_thread_spec_up(), in BreakpointOptions()
154 m_ignore_count(rhs.m_ignore_count), m_thread_spec_up(), in BreakpointOptions()
156 if (rhs.m_thread_spec_up != nullptr) in BreakpointOptions()
157 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in BreakpointOptions()
172 if (rhs.m_thread_spec_up != nullptr) in operator =()
173 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in operator =()
224 if (incoming.m_set_flags.Test(eThreadSpec) && incoming.m_thread_spec_up) { in CopyOverSetOptions()
225 if (!m_thread_spec_up) in CopyOverSetOptions()
226 m_thread_spec_up = in CopyOverSetOptions()
227 std::make_unique<ThreadSpec>(*incoming.m_thread_spec_up); in CopyOverSetOptions()
[all …]
/external/llvm-project/lldb/include/lldb/Breakpoint/
DWatchpointOptions.h196 m_thread_spec_up; // Thread for which this watchpoint will take variable
DBreakpointOptions.h393 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable
/external/llvm-project/lldb/source/Target/
DTarget.cpp3225 m_thread_spec_up() {} in StopHook()
3229 m_specifier_sp(rhs.m_specifier_sp), m_thread_spec_up(), in StopHook()
3231 if (rhs.m_thread_spec_up) in StopHook()
3232 m_thread_spec_up = std::make_unique<ThreadSpec>(*rhs.m_thread_spec_up); in StopHook()
3240 m_thread_spec_up.reset(specifier); in SetThreadSpecifier()
3289 if (m_thread_spec_up) { in GetDescription()
3292 m_thread_spec_up->GetDescription(&tmp, level); in GetDescription()
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h1188 ThreadSpec *GetThreadSpecifier() { return m_thread_spec_up.get(); } in GetThreadSpecifier()
1207 std::unique_ptr<ThreadSpec> m_thread_spec_up; variable