Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp26 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
61 Watchpoint::~Watchpoint() = default;
83 void Watchpoint::ClearCallback() { in ClearCallback()
96 bool Watchpoint::IsHardware() const { in IsHardware()
150 void Watchpoint::Dump(Stream *s) const { in Dump()
185 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
228 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
234 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
272 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
309 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
[all …]
H A DWatchpointList.cpp28 new Watchpoint::WatchpointEventData( in Add()
177 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove()
239 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
/freebsd-13.1/contrib/llvm-project/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;
206 Watchpoint(const Watchpoint &) = delete;
207 const Watchpoint &operator=(const Watchpoint &) = delete;
H A DWatchpointList.h31 friend class Watchpoint; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A 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-13.1/contrib/llvm-project/lldb/source/Commands/
H A 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()
H A 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-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h80 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h162 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
164 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
H A 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-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h272 class Watchpoint; variable
474 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2077 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true);
2079 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp753 Watchpoint *wp = wp_sp.get(); in PerformAction()
H A DProcess.cpp2414 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint()
2420 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
H A DTarget.cpp854 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile109 SRCS+= Breakpoint/Watchpoint.cpp