Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp29 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
66 Watchpoint::~Watchpoint() = default;
176 void Watchpoint::ClearCallback() { in ClearCallback()
189 bool Watchpoint::IsHardware() const { in IsHardware()
265 void Watchpoint::Dump(Stream *s) const { in Dump()
336 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
379 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
385 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
426 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
463 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
[all …]
H A DWatchpointList.cpp27 auto data_sp = std::make_shared<Watchpoint::WatchpointEventData>( in Add()
177 auto data_sp = std::make_shared<Watchpoint::WatchpointEventData>( in Remove()
240 auto data_sp = std::make_shared<Watchpoint::WatchpointEventData>( in RemoveAll()
H A DWatchpointResource.cpp75 bool WatchpointResource::ConstituentsContains(const Watchpoint *wp) { in ConstituentsContains()
H A DWatchpointResourceList.cpp79 WatchpointResourceList::FindByWatchpoint(const Watchpoint *wp) { in FindByWatchpoint()
/freebsd-14.2/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;
238 Watchpoint(const Watchpoint &) = delete;
239 const Watchpoint &operator=(const Watchpoint &) = delete;
H A DWatchpointResourceList.h87 FindByWatchpoint(const lldb_private::Watchpoint *wp);
H A DWatchpointResource.h115 bool ConstituentsContains(const lldb_private::Watchpoint *wp);
H A DWatchpointList.h31 friend class Watchpoint; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp265 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent()
274 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
285 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp399 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
505 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
572 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
H A DCommandObjectWatchpoint.cpp34 static void AddWatchpointDescription(Stream &s, Watchpoint &wp, in AddWatchpointDescription()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h104 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h291 class Watchpoint; variable
476 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
/freebsd-14.2/contrib/llvm-project/lldb/docs/
H A Dpython_api_enums.rst1427 Watchpoint was created watching a variable
1431 Watchpoint was created watching the result of an expression that was
/freebsd-14.2/lib/clang/liblldb/
H A DMakefile114 SRCS+= Breakpoint/Watchpoint.cpp
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp928 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()