Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DWatchpoint.cpp26 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
53 Watchpoint::~Watchpoint() = default;
75 void Watchpoint::ClearCallback() { in ClearCallback()
141 void Watchpoint::Dump(Stream *s) const { in Dump()
176 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
219 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
225 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
263 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
292 const char *Watchpoint::GetConditionText() const { in GetConditionText()
299 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
[all …]
H A DWatchpointList.cpp30 new Watchpoint::WatchpointEventData( in Add()
179 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in Remove()
241 new Watchpoint::WatchpointEventData(eWatchpointEventTypeRemoved, in RemoveAll()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h25 class Watchpoint : public std::enable_shared_from_this<Watchpoint>,
61 Watchpoint(Target &target, lldb::addr_t addr, uint32_t size,
64 ~Watchpoint() override;
225 DISALLOW_COPY_AND_ASSIGN(Watchpoint);
H A DWatchpointList.h33 friend class Watchpoint; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.h75 bool EnableHardwareWatchpoint(lldb_private::Watchpoint *wp);
77 bool DisableHardwareWatchpoint(lldb_private::Watchpoint *wp);
H A DProcessFreeBSD.h116 lldb_private::Status EnableWatchpoint(lldb_private::Watchpoint *wp,
119 lldb_private::Status DisableWatchpoint(lldb_private::Watchpoint *wp,
H A DFreeBSDThread.cpp399 bool FreeBSDThread::EnableHardwareWatchpoint(Watchpoint *wp) { in EnableHardwareWatchpoint()
415 bool FreeBSDThread::DisableHardwareWatchpoint(Watchpoint *wp) { in DisableHardwareWatchpoint()
H A DProcessFreeBSD.cpp700 Status ProcessFreeBSD::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint()
755 Status ProcessFreeBSD::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBWatchpoint.cpp229 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent()
236 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
245 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp432 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
549 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
630 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
H A DCommandObjectWatchpoint.cpp34 static void AddWatchpointDescription(Stream *s, Watchpoint *wp, in AddWatchpointDescription()
269 Watchpoint *wp = watchpoints.GetByIndex(i).get(); in DoExecute()
285 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get(); in DoExecute()
929 Watchpoint *wp = in DoExecute()
1105 Watchpoint *wp = in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBWatchpoint.h75 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h178 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
180 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
H A DProcessGDBRemote.cpp3321 static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) { in GetGDBStoppointType()
3336 Status ProcessGDBRemote::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint()
3373 Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h301 class Watchpoint; variable
497 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h2372 virtual Status EnableWatchpoint(Watchpoint *wp, bool notify = true);
2374 virtual Status DisableWatchpoint(Watchpoint *wp, bool notify = true);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp725 Watchpoint *wp = wp_sp.get(); in PerformAction()
H A DProcess.cpp2674 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint()
2680 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint()
H A DTarget.cpp851 wp_sp.reset(new Watchpoint(*this, addr, size, type)); in CreateWatchpoint()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile101 SRCS+= Breakpoint/Watchpoint.cpp