Home
last modified time | relevance | path

Searched refs:WatchpointResourceSP (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointResourceList.h35 lldb::wp_resource_id_t Add(const lldb::WatchpointResourceSP &wp_res_sp);
64 lldb::WatchpointResourceSP FindByAddress(lldb::addr_t addr);
75 lldb::WatchpointResourceSP FindByWatchpointSP(lldb::WatchpointSP &wp_sp);
86 lldb::WatchpointResourceSP
101 lldb::WatchpointResourceSP FindByID(lldb::wp_resource_id_t id);
117 lldb::WatchpointResourceSP GetResourceAtIndex(uint32_t idx);
119 typedef std::vector<lldb::WatchpointResourceSP> collection;
120 typedef LockingAdaptedIterable<collection, lldb::WatchpointResourceSP,
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResourceList.cpp22 WatchpointResourceList::Add(const WatchpointResourceSP &wp_res_sp) { in Add()
65 WatchpointResourceSP WatchpointResourceList::FindByAddress(addr_t addr) { in FindByAddress()
67 for (WatchpointResourceSP wp_res_sp : m_resources) in FindByAddress()
73 WatchpointResourceSP
78 WatchpointResourceSP
81 for (WatchpointResourceSP wp_res_sp : m_resources) in FindByWatchpoint()
87 WatchpointResourceSP WatchpointResourceList::FindByID(wp_resource_id_t id) { in FindByID()
89 for (WatchpointResourceSP wp_res_sp : m_resources) in FindByID()
100 lldb::WatchpointResourceSP
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1801 WatchpointResourceSP wp_resource_sp; in SetThreadStopInfo()
2247 WatchpointResourceSP wp_resource_sp = in SetThreadStopInfo()
3118 GetGDBStoppointType(const WatchpointResourceSP &wp_res_sp) { in GetGDBStoppointType()
3157 std::vector<WatchpointResourceSP> resources; in EnableWatchpoint()
3170 WatchpointResourceSP wp_res_sp = in EnableWatchpoint()
3198 std::vector<WatchpointResourceSP> succesfully_set_resources; in EnableWatchpoint()
3270 std::vector<WatchpointResourceSP> unused_resources; in DisableWatchpoint()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h477 typedef std::shared_ptr<lldb_private::WatchpointResource> WatchpointResourceSP; typedef