Searched refs:WatchpointResource (Results 1 – 6 of 6) sorted by relevance
19 WatchpointResource::WatchpointResource(lldb::addr_t addr, size_t size, in WatchpointResource() function in WatchpointResource24 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 …]
54 std::make_shared<WatchpointResource>(ent.addr, ent.size, read, write); in AtomizeWatchpointRequest()
20 class WatchpointResource21 : 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;
298 class WatchpointResource; variable485 typedef std::shared_ptr<lldb_private::WatchpointResource> WatchpointResourceSP;
2217 StopPointSiteList<lldb_private::WatchpointResource> &3094 StopPointSiteList<lldb_private::WatchpointResource>
121 SRCS+= Breakpoint/WatchpointResource.cpp