Home
last modified time | relevance | path

Searched refs:MemoryCache (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DMemory.h21 class MemoryCache {
24 MemoryCache(Process &process);
26 ~MemoryCache();
62 MemoryCache(const MemoryCache &) = delete;
63 const MemoryCache &operator=(const MemoryCache &) = delete;
H A DProcess.h2933 MemoryCache m_memory_cache;
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DMemory.cpp24 MemoryCache::MemoryCache(Process &process) in MemoryCache() function in MemoryCache
30 MemoryCache::~MemoryCache() = default;
32 void MemoryCache::Clear(bool clear_invalid_ranges) { in Clear()
41 void MemoryCache::AddL1CacheData(lldb::addr_t addr, const void *src, in AddL1CacheData()
47 void MemoryCache::AddL1CacheData(lldb::addr_t addr, in AddL1CacheData()
53 void MemoryCache::Flush(addr_t addr, size_t size) { in Flush()
101 void MemoryCache::AddInvalidRange(lldb::addr_t base_addr, in AddInvalidRange()
111 bool MemoryCache::RemoveInvalidRange(lldb::addr_t base_addr, in RemoveInvalidRange()
126 size_t MemoryCache::Read(addr_t addr, void *dst, size_t dst_len, in Read()