Searched refs:Watchpoint (Results 1 – 14 of 14) sorted by relevance
| /src/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | Watchpoint.cpp | 29 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint 70 Watchpoint::~Watchpoint() = default; 73 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback() 85 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback() 92 bool Watchpoint::SetupVariableWatchpointDisabler(StackFrameSP frame_sp) const { in SetupVariableWatchpointDisabler() 133 bool Watchpoint::VariableWatchpointDisabler(void *baton, in VariableWatchpointDisabler() 180 void Watchpoint::ClearCallback() { in ClearCallback() 185 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo() 187 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec() 189 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec() [all …]
|
| H A D | WatchpointList.cpp | 27 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 D | WatchpointResource.cpp | 74 bool WatchpointResource::ConstituentsContains(const Watchpoint *wp) { in ConstituentsContains()
|
| /src/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | Watchpoint.h | 24 class Watchpoint : public std::enable_shared_from_this<Watchpoint>, 61 Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, 64 ~Watchpoint() override; 235 Watchpoint(const Watchpoint &) = delete; 236 const Watchpoint &operator=(const Watchpoint &) = delete;
|
| H A D | WatchpointResource.h | 115 bool ConstituentsContains(const lldb_private::Watchpoint *wp);
|
| H A D | WatchpointList.h | 31 friend class Watchpoint; variable
|
| /src/contrib/llvm-project/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 265 return Watchpoint::WatchpointEventData::GetEventDataFromEvent(event.get()) != in EventIsWatchpointEvent() 274 return Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent() 285 Watchpoint::WatchpointEventData::GetWatchpointFromEvent(event.GetSP()); in GetWatchpointFromEvent()
|
| /src/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectWatchpointCommand.cpp | 387 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 481 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute() 536 Watchpoint *wp = target->GetWatchpointList().FindByID(cur_wp_id).get(); in DoExecute()
|
| H A D | CommandObjectWatchpoint.cpp | 34 static void AddWatchpointDescription(Stream &s, Watchpoint &wp, in AddWatchpointDescription()
|
| /src/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 104 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
|
| /src/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 295 class Watchpoint; variable 484 typedef std::shared_ptr<lldb_private::Watchpoint> WatchpointSP;
|
| /src/contrib/llvm-project/lldb/docs/ |
| H A D | python_api_enums.rst | 1427 Watchpoint was created watching a variable 1431 Watchpoint was created watching the result of an expression that was
|
| /src/lib/clang/liblldb/ |
| H A D | Makefile | 133 SRCS+= Breakpoint/Watchpoint.cpp
|
| /src/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 929 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
|