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

References

tools/lldb/source/Target/Target.cpp
  784     return wp_sp;
  792     return wp_sp;
  800     return wp_sp;
  818       wp_sp = matched_sp;
  819       wp_sp->SetEnabled(false, notify);
  827   if (!wp_sp) {
  828     wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type);
  829     wp_sp->SetWatchpointType(kind, notify);
  830     m_watchpoint_list.Add(wp_sp, true);
  833   error = m_process_sp->EnableWatchpoint(wp_sp.get(), notify);
  836             wp_sp->GetID());
  841     m_watchpoint_list.Remove(wp_sp->GetID(), true);
  847     wp_sp.reset();
  849     m_last_created_watchpoint = wp_sp;
  850   return wp_sp;