Lines Matching refs:WatchpointResource
18 WatchpointResource::WatchpointResource(lldb::addr_t addr, size_t size, in WatchpointResource() function in WatchpointResource
23 WatchpointResource::~WatchpointResource() { in ~WatchpointResource()
28 addr_t WatchpointResource::GetLoadAddress() const { return m_addr; } in GetLoadAddress()
30 size_t WatchpointResource::GetByteSize() const { return m_size; } in GetByteSize()
32 bool WatchpointResource::WatchpointResourceRead() const { return m_watch_read; } in WatchpointResourceRead()
34 bool WatchpointResource::WatchpointResourceWrite() const { in WatchpointResourceWrite()
38 void WatchpointResource::SetType(bool read, bool write) { in SetType()
43 wp_resource_id_t WatchpointResource::GetID() const { return m_id; } in GetID()
45 void WatchpointResource::SetID(wp_resource_id_t id) { m_id = id; } in SetID()
47 bool WatchpointResource::Contains(addr_t addr) { in Contains()
53 void WatchpointResource::AddConstituent(const WatchpointSP &wp_sp) { in AddConstituent()
58 void WatchpointResource::RemoveConstituent(WatchpointSP &wp_sp) { in RemoveConstituent()
66 size_t WatchpointResource::GetNumberOfConstituents() { in GetNumberOfConstituents()
71 bool WatchpointResource::ConstituentsContains(const WatchpointSP &wp_sp) { in ConstituentsContains()
75 bool WatchpointResource::ConstituentsContains(const Watchpoint *wp) { in ConstituentsContains()
83 WatchpointSP WatchpointResource::GetConstituentAtIndex(size_t idx) { in GetConstituentAtIndex()
92 WatchpointResource::WatchpointCollection
93 WatchpointResource::CopyConstituentsList() { in CopyConstituentsList()
98 bool WatchpointResource::ShouldStop(StoppointCallbackContext *context) { in ShouldStop()
117 void WatchpointResource::Dump(Stream *s) const { in Dump()
121 wp_resource_id_t WatchpointResource::GetNextID() { in GetNextID()