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.cpp18 WatchpointResource::WatchpointResource(lldb::addr_t addr, size_t size, in WatchpointResource() function in WatchpointResource
23 WatchpointResource::~WatchpointResource() { in ~WatchpointResource()
30 size_t WatchpointResource::GetByteSize() const { return m_size; } in GetByteSize()
34 bool WatchpointResource::WatchpointResourceWrite() const { in WatchpointResourceWrite()
38 void WatchpointResource::SetType(bool read, bool write) { in SetType()
47 bool WatchpointResource::Contains(addr_t addr) { in Contains()
66 size_t WatchpointResource::GetNumberOfConstituents() { in GetNumberOfConstituents()
92 WatchpointResource::WatchpointCollection
93 WatchpointResource::CopyConstituentsList() { in CopyConstituentsList()
117 void WatchpointResource::Dump(Stream *s) const { in Dump()
[all …]
/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();
163 WatchpointResource(const WatchpointResource &) = delete;
164 const WatchpointResource &operator=(const WatchpointResource &) = delete;
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h294 class WatchpointResource; variable
477 typedef std::shared_ptr<lldb_private::WatchpointResource> WatchpointResourceSP;
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2192 StopPointSiteList<lldb_private::WatchpointResource> &
3033 StopPointSiteList<lldb_private::WatchpointResource>
/freebsd/lib/clang/liblldb/
H A DMakefile117 SRCS+= Breakpoint/WatchpointResource.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3171 std::make_shared<WatchpointResource>(addr, size, read, write); in EnableWatchpoint()