Home
last modified time | relevance | path

Searched refs:Watchpoint (Results 1 – 25 of 25) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DWatchpoint.cpp27 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 DWatchpointList.cpp28 new Watchpoint::WatchpointEventData( in Add()
177 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove()
239 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
H A DCMakeLists.txt23 Watchpoint.cpp
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h24 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 DWatchpointList.h31 friend class Watchpoint; variable
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBWatchpoint.cpp270 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 DProcessWindows.h100 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
101 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
H A DProcessWindows.cpp849 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 DProcessKDP.h128 lldb_private::Status EnableWatchpoint(lldb_private::Watchpoint *wp,
131 lldb_private::Status DisableWatchpoint(lldb_private::Watchpoint *wp,
H A DProcessKDP.cpp675 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 DCommandObjectWatchpointCommand.cpp399 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 DCommandObjectWatchpoint.cpp32 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 DMakefile30 Watchpoint.cpp \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Breakpoint/
H A DBUILD.gn36 "Watchpoint.cpp",
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBWatchpoint.h80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h158 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
160 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
H A DProcessGDBRemote.cpp3054 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 Dlldb-forward.h284 class Watchpoint; variable
459 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dtutorial.rst387 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 Dmap.rst662 Watchpoint Commands
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DProcess.h2076 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 Dprojects.rst332 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 DProcess.cpp2403 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint()
2409 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
H A DTarget.cpp874 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/
H A DChangeLog2242 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