| /openbsd-src/gnu/llvm/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 64 Watchpoint::~Watchpoint() = default; 67 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback() 79 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback() 86 void Watchpoint::ClearCallback() { in ClearCallback() 91 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo() 93 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec() 95 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec() 99 bool Watchpoint::IsHardware() const { in IsHardware() 104 bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; } in IsWatchVariable() [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
|
| /openbsd-src/gnu/llvm/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; 209 Watchpoint(const Watchpoint &) = delete; 210 const Watchpoint &operator=(const Watchpoint &) = delete;
|
| H A D | WatchpointList.h | 31 friend class Watchpoint; variable
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindows.h | 100 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 101 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
| H A D | ProcessWindows.cpp | 849 Status ProcessWindows::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 903 Status ProcessWindows::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/usr.bin/clang/liblldbBreakpoint/ |
| H A D | Makefile | 30 Watchpoint.cpp \
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Breakpoint/ |
| H A D | BUILD.gn | 36 "Watchpoint.cpp",
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 158 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override; 160 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
|
| H A D | ProcessGDBRemote.cpp | 3054 static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) { in GetGDBStoppointType() 3069 Status ProcessGDBRemote::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() 3105 Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/ |
| H A D | lldb-forward.h | 284 class Watchpoint; variable 459 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
|
| /openbsd-src/gnu/llvm/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
|
| H A D | map.rst | 662 Watchpoint Commands
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | Process.h | 2076 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true); 2078 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
|
| /openbsd-src/gnu/llvm/lldb/docs/status/ |
| H A D | projects.rst | 332 Unify Watchpoint's & Breakpoints 336 lot of duplicated common code, most of which works less well on the Watchpoint
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Process.cpp | 2403 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint() 2409 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
|
| H A D | Target.cpp | 874 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/ |
| H A D | ChangeLog | 2242 as well as 'Watchpoint'. 2253 as well as 'Watchpoint'. 6620 Fix run to main failures. Watchpoint can be hardware watchpoint. 11422 * gdb.t07/watchpoint.exp: Accept both "Watchpoint" and
|