/external/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 | 29 new Watchpoint::WatchpointEventData( in Add() 178 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove() 240 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
|
D | CMakeLists.txt | 23 Watchpoint.cpp
|
/external/llvm-project/lldb/test/Shell/Register/ |
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
|
/external/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 | 30 friend class Watchpoint; variable
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
D | FreeBSDThread.h | 68 bool EnableHardwareWatchpoint(lldb_private::Watchpoint *wp); 70 bool DisableHardwareWatchpoint(lldb_private::Watchpoint *wp);
|
D | ProcessFreeBSD.h | 108 lldb_private::Status EnableWatchpoint(lldb_private::Watchpoint *wp, 111 lldb_private::Status DisableWatchpoint(lldb_private::Watchpoint *wp,
|
D | FreeBSDThread.cpp | 385 bool FreeBSDThread::EnableHardwareWatchpoint(Watchpoint *wp) { in EnableHardwareWatchpoint() 401 bool FreeBSDThread::DisableHardwareWatchpoint(Watchpoint *wp) { in DisableHardwareWatchpoint()
|
D | ProcessFreeBSD.cpp | 696 Status ProcessFreeBSD::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 750 Status ProcessFreeBSD::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ProcessWindows.h | 105 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 106 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
D | ProcessWindows.cpp | 838 Status ProcessWindows::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 892 Status ProcessWindows::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ProcessKDP.h | 130 lldb_private::Status EnableWatchpoint(lldb_private::Watchpoint *wp, 133 lldb_private::Status DisableWatchpoint(lldb_private::Watchpoint *wp,
|
D | ProcessKDP.cpp | 690 Status ProcessKDP::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 697 Status ProcessKDP::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
/external/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()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectWatchpointCommand.cpp | 432 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 542 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 614 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
|
D | CommandObjectWatchpoint.cpp | 31 static void AddWatchpointDescription(Stream *s, Watchpoint *wp, in AddWatchpointDescription() 245 Watchpoint *wp = watchpoints.GetByIndex(i).get(); in DoExecute() 261 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get(); in DoExecute() 977 Watchpoint *wp = in DoExecute() 1153 Watchpoint *wp = in DoExecute()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBWatchpoint.h | 80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
|
/external/llvm-project/lldb/test/Shell/Watchpoint/ |
D | netbsd-nouserdbregs.test | 18 # CHECK: error: Watchpoint creation failed
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.h | 160 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 162 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
/external/llvm-project/lldb/include/lldb/ |
D | lldb-forward.h | 271 class Watchpoint; variable 467 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
|
/external/llvm-project/lldb/docs/use/ |
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
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | Process.h | 2068 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true); 2070 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
|
/external/llvm-project/lldb/source/Target/ |
D | StopInfo.cpp | 716 Watchpoint *wp = wp_sp.get(); in PerformAction()
|
/external/llvm-project/lldb/docs/status/ |
D | projects.rst | 332 Unify Watchpoint's & Breakpoints 336 lot of duplicated common code, most of which works less well on the Watchpoint
|