reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Breakpoint/BreakpointOptions.cpp
  150     : m_callback(rhs.m_callback), m_callback_baton_sp(rhs.m_callback_baton_sp),
  150     : m_callback(rhs.m_callback), m_callback_baton_sp(rhs.m_callback_baton_sp),
  151       m_baton_is_command_baton(rhs.m_baton_is_command_baton),
  152       m_callback_is_synchronous(rhs.m_callback_is_synchronous),
  153       m_enabled(rhs.m_enabled), m_one_shot(rhs.m_one_shot),
  153       m_enabled(rhs.m_enabled), m_one_shot(rhs.m_one_shot),
  154       m_ignore_count(rhs.m_ignore_count), m_thread_spec_up(),
  155       m_auto_continue(rhs.m_auto_continue), m_set_flags(rhs.m_set_flags) {
  155       m_auto_continue(rhs.m_auto_continue), m_set_flags(rhs.m_set_flags) {
  156   if (rhs.m_thread_spec_up != nullptr)
  157     m_thread_spec_up.reset(new ThreadSpec(*rhs.m_thread_spec_up));
  158   m_condition_text = rhs.m_condition_text;
  159   m_condition_text_hash = rhs.m_condition_text_hash;