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

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
79602     const lldb::WatchpointSP& wp_sp
tools/lldb/include/lldb/API/SBWatchpoint.h
   22   SBWatchpoint(const lldb::WatchpointSP &wp_sp);
   65   lldb::WatchpointSP GetSP() const;
   67   void SetSP(const lldb::WatchpointSP &sp);
tools/lldb/include/lldb/Breakpoint/Watchpoint.h
   30                         const lldb::WatchpointSP &new_watchpoint_sp);
   40     lldb::WatchpointSP &GetWatchpoint();
   47     static lldb::WatchpointSP
   55     lldb::WatchpointSP m_new_watchpoint_sp;
tools/lldb/include/lldb/Breakpoint/WatchpointList.h
   47   lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
   64   const lldb::WatchpointSP FindByAddress(lldb::addr_t addr) const;
   75   const lldb::WatchpointSP FindBySpec(std::string spec) const;
   86   lldb::WatchpointSP FindByID(lldb::watch_id_t watchID) const;
  115   lldb::WatchpointSP GetByIndex(uint32_t i);
  126   const lldb::WatchpointSP GetByIndex(uint32_t i) const;
  188   typedef std::list<lldb::WatchpointSP> wp_collection;
tools/lldb/include/lldb/Target/Target.h
  682   lldb::WatchpointSP CreateWatchpoint(lldb::addr_t addr, size_t size,
  686   lldb::WatchpointSP GetLastCreatedWatchpoint() {
 1308   lldb::WatchpointSP m_last_created_watchpoint;
tools/lldb/source/API/SBTarget.cpp
 1387   lldb::WatchpointSP watchpoint_sp;
 1408   lldb::WatchpointSP watchpoint_sp;
tools/lldb/source/API/SBValue.cpp
 1503     WatchpointSP watchpoint_sp =
tools/lldb/source/API/SBWatchpoint.cpp
   31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp)
   56   lldb::WatchpointSP watchpoint_sp(GetSP());
   91   lldb::WatchpointSP watchpoint_sp(GetSP());
  103   lldb::WatchpointSP watchpoint_sp(GetSP());
  118   lldb::WatchpointSP watchpoint_sp(GetSP());
  133   lldb::WatchpointSP watchpoint_sp(GetSP());
  146   lldb::WatchpointSP watchpoint_sp(GetSP());
  166   lldb::WatchpointSP watchpoint_sp(GetSP());
  179   lldb::WatchpointSP watchpoint_sp(GetSP());
  192   lldb::WatchpointSP watchpoint_sp(GetSP());
  204   lldb::WatchpointSP watchpoint_sp(GetSP());
  215   lldb::WatchpointSP watchpoint_sp(GetSP());
  228   lldb::WatchpointSP watchpoint_sp(GetSP());
  244   lldb::WatchpointSP watchpoint_sp(GetSP());
  262 lldb::WatchpointSP SBWatchpoint::GetSP() const {
  268 void SBWatchpoint::SetSP(const lldb::WatchpointSP &sp) {
tools/lldb/source/Breakpoint/Watchpoint.cpp
  331     WatchpointEventType sub_type, const WatchpointSP &new_watchpoint_sp)
  346 WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() {
  379 WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent(
  381   WatchpointSP wp_sp;
tools/lldb/source/Breakpoint/WatchpointList.cpp
   21 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) {
   53 const WatchpointSP WatchpointList::FindByAddress(lldb::addr_t addr) const {
   54   WatchpointSP wp_sp;
   71 const WatchpointSP WatchpointList::FindBySpec(std::string spec) const {
   72   WatchpointSP wp_sp;
   90   bool operator()(const WatchpointSP &wp) const {
  112 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const {
  113   WatchpointSP wp_sp;
  123   WatchpointSP wp_sp = FindByAddress(addr);
  131   WatchpointSP wp_sp = FindBySpec(spec);
  138 WatchpointSP WatchpointList::GetByIndex(uint32_t i) {
  140   WatchpointSP wp_sp;
  149 const WatchpointSP WatchpointList::GetByIndex(uint32_t i) const {
  151   WatchpointSP wp_sp;
  172     WatchpointSP wp_sp = *pos;
  199   WatchpointSP wp_sp = FindByID(watch_id);
tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
   75     WatchpointSP watch_sp = target->GetLastCreatedWatchpoint();
  697       WatchpointSP wp_sp = target->GetLastCreatedWatchpoint();
  713         WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]);
tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
  356           lldb::WatchpointSP wp_sp;
  389         lldb::WatchpointSP wp_sp;
  432         lldb::WatchpointSP wp_sp;
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1888                 WatchpointSP wp_sp;
 2315         WatchpointSP wp_sp =
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
   83     const lldb::StackFrameSP &sb_frame, const lldb::WatchpointSP &sb_wp);
 2310     WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id);
tools/lldb/source/Target/StopInfo.cpp
  581     WatchpointSentry(ProcessSP p_sp, WatchpointSP w_sp) : process_sp(p_sp), 
  618     WatchpointSP watchpoint_sp;
  653       WatchpointSP wp_sp(
  695       WatchpointSP wp_sp(
  766           WatchpointSP wp_hit_sp =
tools/lldb/source/Target/Target.cpp
  772 WatchpointSP Target::CreateWatchpoint(lldb::addr_t addr, size_t size,
  781   WatchpointSP wp_sp;
  810   WatchpointSP matched_sp = m_watchpoint_list.FindByAddress(addr);
 1140     WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
 1171     WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
 1200     WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
 1218     WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
 1234     WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
 1254     WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i);
 1271   WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
 1290   WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
 1306   WatchpointSP watch_to_remove_sp = m_watchpoint_list.FindByID(watch_id);
 1326   WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
tools/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
   72     const lldb::StackFrameSP &sb_frame, const lldb::WatchpointSP &sb_wp) {