Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
DWatchpoint.cpp26 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 …]
DWatchpointList.cpp28 new Watchpoint::WatchpointEventData( in Add()
177 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove()
239 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
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;
206 Watchpoint(const Watchpoint &) = delete;
207 const Watchpoint &operator=(const Watchpoint &) = delete;
DWatchpointList.h31 friend class Watchpoint; variable
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBWatchpoint.cpp279 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent()
290 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
303 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp429 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
536 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
604 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
DCommandObjectWatchpoint.cpp31 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()
956 Watchpoint *wp = in DoExecute()
1125 Watchpoint *wp = in DoExecute()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
DSBWatchpoint.h80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.h162 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
164 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
DProcessGDBRemote.cpp3295 static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) { in GetGDBStoppointType()
3310 Status ProcessGDBRemote::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint()
3347 Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/
Dlldb-forward.h272 class Watchpoint; variable
474 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
DProcess.h2077 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true);
2079 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DStopInfo.cpp753 Watchpoint *wp = wp_sp.get(); in PerformAction()
DProcess.cpp2414 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint()
2420 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
DTarget.cpp854 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
/freebsd-12-stable/lib/clang/liblldb/
DMakefile109 SRCS+= Breakpoint/Watchpoint.cpp