| /freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/ |
| D | Watchpoint.cpp | 26 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint 61 Watchpoint::~Watchpoint() = default; 64 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback() 76 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback() 83 void Watchpoint::ClearCallback() { in ClearCallback() 88 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo() 90 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec() 92 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec() 96 bool Watchpoint::IsHardware() const { in IsHardware() 101 bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; } in IsWatchVariable() [all …]
|
| D | WatchpointList.cpp | 28 new Watchpoint::WatchpointEventData( in Add() 177 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove() 239 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| D | Watchpoint.h | 24 class Watchpoint : public std::enable_shared_from_this<Watchpoint>, 61 Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, 64 ~Watchpoint() override; 206 Watchpoint(const Watchpoint &) = delete; 207 const Watchpoint &operator=(const Watchpoint &) = delete;
|
| D | WatchpointList.h | 31 friend class Watchpoint; variable
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBWatchpoint.cpp | 279 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent() 290 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent() 303 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/ |
| D | CommandObjectWatchpointCommand.cpp | 429 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 536 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 604 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
|
| D | CommandObjectWatchpoint.cpp | 31 static void AddWatchpointDescription(Stream *s, Watchpoint *wp, in AddWatchpointDescription() 240 Watchpoint *wp = watchpoints.GetByIndex(i).get(); in DoExecute() 255 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get(); in DoExecute() 956 Watchpoint *wp = in DoExecute() 1125 Watchpoint *wp = in DoExecute()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBWatchpoint.h | 80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| D | ProcessGDBRemote.h | 162 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 164 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
| D | ProcessGDBRemote.cpp | 3295 static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) { in GetGDBStoppointType() 3310 Status ProcessGDBRemote::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 3347 Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/ |
| D | lldb-forward.h | 272 class Watchpoint; variable 474 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/ |
| D | Process.h | 2077 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true); 2079 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | StopInfo.cpp | 753 Watchpoint *wp = wp_sp.get(); in PerformAction()
|
| D | Process.cpp | 2414 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint() 2420 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
|
| D | Target.cpp | 854 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
|
| /freebsd-12-stable/lib/clang/liblldb/ |
| D | Makefile | 109 SRCS+= Breakpoint/Watchpoint.cpp
|