Home
last modified time | relevance | path

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

/external/lldb/source/Breakpoint/
DWatchpointOptions.cpp41 m_thread_spec_ap () in WatchpointOptions()
52 m_thread_spec_ap () in WatchpointOptions()
54 if (rhs.m_thread_spec_ap.get() != NULL) in WatchpointOptions()
55 m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get())); in WatchpointOptions()
67 if (rhs.m_thread_spec_ap.get() != NULL) in operator =()
68 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in operator =()
148 return m_thread_spec_ap.get(); in GetThreadSpecNoCreate()
154 if (m_thread_spec_ap.get() == NULL) in GetThreadSpec()
155 m_thread_spec_ap.reset (new ThreadSpec()); in GetThreadSpec()
157 return m_thread_spec_ap.get(); in GetThreadSpec()
[all …]
DBreakpointOptions.cpp44 m_thread_spec_ap (), in BreakpointOptions()
60 m_thread_spec_ap () in BreakpointOptions()
62 if (rhs.m_thread_spec_ap.get() != NULL) in BreakpointOptions()
63 m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get())); in BreakpointOptions()
80 if (rhs.m_thread_spec_ap.get() != NULL) in operator =()
81 m_thread_spec_ap.reset(new ThreadSpec(*rhs.m_thread_spec_ap.get())); in operator =()
192 return m_thread_spec_ap.get(); in GetThreadSpecNoCreate()
198 if (m_thread_spec_ap.get() == NULL) in GetThreadSpec()
199 m_thread_spec_ap.reset (new ThreadSpec()); in GetThreadSpec()
201 return m_thread_spec_ap.get(); in GetThreadSpec()
[all …]
/external/lldb/include/lldb/Breakpoint/
DWatchpointOptions.h250 std::unique_ptr<ThreadSpec> m_thread_spec_ap; // Thread for which this watchpoint will take variable
DBreakpointOptions.h351 std::unique_ptr<ThreadSpec> m_thread_spec_ap; // Thread for which this breakpoint will take variable
/external/lldb/source/Target/
DTarget.cpp2188 m_thread_spec_ap(), in StopHook()
2198 m_thread_spec_ap (), in StopHook()
2201 if (rhs.m_thread_spec_ap.get() != NULL) in StopHook()
2202 m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get())); in StopHook()
2213 m_thread_spec_ap.reset (specifier); in SetThreadSpecifier()
2239 if (m_thread_spec_ap.get() != NULL) in GetDescription()
2243 m_thread_spec_ap->GetDescription (&tmp, level); in GetDescription()
/external/lldb/include/lldb/Target/
DTarget.h1039 return m_thread_spec_ap.get(); in GetThreadSpecifier()
1061 std::unique_ptr<ThreadSpec> m_thread_spec_ap; variable