| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | Watchpoint.cpp | 27 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint 60 Watchpoint::~Watchpoint() = default; 82 void Watchpoint::ClearCallback() { in ClearCallback() 95 bool Watchpoint::IsHardware() const { in IsHardware() 149 void Watchpoint::Dump(Stream *s) const { in Dump() 184 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel() 227 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode() 233 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode() 271 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount() 308 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent() [all …]
|
| H A D | WatchpointList.cpp | 28 new Watchpoint::WatchpointEventData( in Add() 177 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove() 239 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
|
| H A D | CMakeLists.txt | 23 Watchpoint.cpp
|
| /llvm-project-15.0.7/lldb/test/Shell/Register/ |
| H A D | x86-db-read.test | 10 # CHECK: Watchpoint created: Watchpoint 1: addr = 0x{{[0-9a-f]*}} size = 1 state = enabled type = w 12 # CHECK: Watchpoint created: Watchpoint 2: addr = 0x{{[0-9a-f]*}} size = 2 state = enabled type = rw 14 # CHECK: Watchpoint created: Watchpoint 3: addr = 0x{{[0-9a-f]*}} size = 4 state = enabled type = w 16 # CHECK: Watchpoint created: Watchpoint 4: addr = 0x{{[0-9a-f]*}} size = 4 state = enabled type = rw
|
| /llvm-project-15.0.7/lldb/include/lldb/Breakpoint/ |
| H A 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;
|
| H A D | WatchpointList.h | 31 friend class Watchpoint; variable
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 270 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent() 279 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent() 290 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindows.h | 103 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 104 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
| H A D | ProcessWindows.cpp | 851 Status ProcessWindows::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 905 Status ProcessWindows::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDP.h | 128 lldb_private::Status EnableWatchpoint(lldb_private::Watchpoint *wp, 131 lldb_private::Status DisableWatchpoint(lldb_private::Watchpoint *wp,
|
| H A D | ProcessKDP.cpp | 675 Status ProcessKDP::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 682 Status ProcessKDP::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /llvm-project-15.0.7/lldb/test/Shell/Subprocess/ |
| H A D | fork-follow-parent-wp.test | 7 # CHECK: Watchpoint created:
|
| H A D | vfork-follow-parent-wp.test | 8 # CHECK: Watchpoint created:
|
| H A D | vfork-follow-child-wp.test | 10 # CHECK: Watchpoint created:
|
| H A D | fork-follow-child-wp.test | 10 # CHECK: Watchpoint created:
|
| H A D | clone-follow-parent-wp.test | 8 # CHECK: Watchpoint created:
|
| H A D | clone-follow-child-wp.test | 10 # CHECK: Watchpoint created:
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectWatchpointCommand.cpp | 399 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 506 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 574 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
|
| H A D | CommandObjectWatchpoint.cpp | 32 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() 952 Watchpoint *wp = in DoExecute() 1120 Watchpoint *wp = in DoExecute()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Breakpoint/ |
| H A D | BUILD.gn | 36 "Watchpoint.cpp",
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
|
| /llvm-project-15.0.7/lldb/test/Shell/Watchpoint/ |
| H A D | netbsd-nouserdbregs.test | 18 # CHECK: error: Watchpoint creation failed
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 159 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 161 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | lldb-forward.h | 280 class Watchpoint; variable 449 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | tutorial.rst | 387 Watchpoint created: Watchpoint 1: addr = 0x100001018 size = 4 state = enabled type = w 392 Watchpoint 1: addr = 0x100001018 size = 4 state = enabled type = w 421 Watchpoint 1: addr = 0x100001018 size = 4 state = enabled type = w
|