| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | Watchpoint.cpp | 26 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint 53 Watchpoint::~Watchpoint() = default; 75 void Watchpoint::ClearCallback() { in ClearCallback() 141 void Watchpoint::Dump(Stream *s) const { in Dump() 176 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel() 219 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode() 225 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode() 263 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount() 292 const char *Watchpoint::GetConditionText() const { in GetConditionText() 299 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent() [all …]
|
| H A D | WatchpointList.cpp | 30 new Watchpoint::WatchpointEventData( in Add() 179 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove() 241 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| H A D | Watchpoint.h | 25 class Watchpoint : public std::enable_shared_from_this<Watchpoint>, 61 Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, 64 ~Watchpoint() override; 225 DISALLOW_COPY_AND_ASSIGN(Watchpoint);
|
| H A D | WatchpointList.h | 33 friend class Watchpoint; variable
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | FreeBSDThread.h | 75 bool EnableHardwareWatchpoint(lldb_private::Watchpoint *wp); 77 bool DisableHardwareWatchpoint(lldb_private::Watchpoint *wp);
|
| H A D | ProcessFreeBSD.h | 116 lldb_private::Status EnableWatchpoint(lldb_private::Watchpoint *wp, 119 lldb_private::Status DisableWatchpoint(lldb_private::Watchpoint *wp,
|
| H A D | FreeBSDThread.cpp | 399 bool FreeBSDThread::EnableHardwareWatchpoint(Watchpoint *wp) { in EnableHardwareWatchpoint() 415 bool FreeBSDThread::DisableHardwareWatchpoint(Watchpoint *wp) { in DisableHardwareWatchpoint()
|
| H A D | ProcessFreeBSD.cpp | 700 Status ProcessFreeBSD::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 755 Status ProcessFreeBSD::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 229 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent() 236 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent() 245 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectWatchpointCommand.cpp | 432 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 549 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 630 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
|
| H A D | CommandObjectWatchpoint.cpp | 34 static void AddWatchpointDescription(Stream *s, Watchpoint *wp, in AddWatchpointDescription() 269 Watchpoint *wp = watchpoints.GetByIndex(i).get(); in DoExecute() 285 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get(); in DoExecute() 929 Watchpoint *wp = in DoExecute() 1105 Watchpoint *wp = in DoExecute()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 75 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 178 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 180 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
| H A D | ProcessGDBRemote.cpp | 3321 static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) { in GetGDBStoppointType() 3336 Status ProcessGDBRemote::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 3373 Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-forward.h | 301 class Watchpoint; variable 497 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Process.h | 2372 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true); 2374 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | StopInfo.cpp | 725 Watchpoint *wp = wp_sp.get(); in PerformAction()
|
| H A D | Process.cpp | 2674 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint() 2680 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
|
| H A D | Target.cpp | 851 wp_sp.reset(new Watchpoint(*this, addr, size, type)); in CreateWatchpoint()
|
| /freebsd-12.1/lib/clang/liblldb/ |
| H A D | Makefile | 101 SRCS+= Breakpoint/Watchpoint.cpp
|