Home
last modified time | relevance | path

Searched refs:WatchpointResource (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResource.cpp19 WatchpointResource::WatchpointResource(lldb::addr_t addr, size_t size, in WatchpointResource() function in WatchpointResource
24 WatchpointResource::~WatchpointResource() { in ~WatchpointResource()
29 addr_t WatchpointResource::GetLoadAddress() const { return m_addr; } in GetLoadAddress()
31 size_t WatchpointResource::GetByteSize() const { return m_size; } in GetByteSize()
33 bool WatchpointResource::WatchpointResourceRead() const { return m_watch_read; } in WatchpointResourceRead()
35 bool WatchpointResource::WatchpointResourceWrite() const { in WatchpointResourceWrite()
39 void WatchpointResource::SetType(bool read, bool write) { in SetType()
44 wp_resource_id_t WatchpointResource::GetID() const { return m_id; } in GetID()
46 bool WatchpointResource::Contains(addr_t addr) { in Contains()
52 void WatchpointResource::AddConstituent(const WatchpointSP &wp_sp) { in AddConstituent()
[all …]
H A DWatchpointAlgorithms.cpp54 std::make_shared<WatchpointResource>(ent.addr, ent.size, read, write); in AtomizeWatchpointRequest()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointResource.h20 class WatchpointResource
21 : public std::enable_shared_from_this<WatchpointResource> {
24 WatchpointResource(lldb::addr_t addr, size_t size, bool read, bool write);
26 ~WatchpointResource();
155 WatchpointResource(const WatchpointResource &) = delete;
156 const WatchpointResource &operator=(const WatchpointResource &) = delete;
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h298 class WatchpointResource; variable
485 typedef std::shared_ptr<lldb_private::WatchpointResource> WatchpointResourceSP;
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2217 StopPointSiteList<lldb_private::WatchpointResource> &
3094 StopPointSiteList<lldb_private::WatchpointResource>
/freebsd/lib/clang/liblldb/
H A DMakefile121 SRCS+= Breakpoint/WatchpointResource.cpp