Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.h2925 MemoryCache m_memory_cache;
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DMemory.cpp23 MemoryCache::MemoryCache(Process &process) in MemoryCache() function in MemoryCache
29 MemoryCache::~MemoryCache() = default;
31 void MemoryCache::Clear(bool clear_invalid_ranges) { in Clear()
40 void MemoryCache::AddL1CacheData(lldb::addr_t addr, const void *src, in AddL1CacheData()
46 void MemoryCache::AddL1CacheData(lldb::addr_t addr, in AddL1CacheData()
52 void MemoryCache::Flush(addr_t addr, size_t size) { in Flush()
100 void MemoryCache::AddInvalidRange(lldb::addr_t base_addr, in AddInvalidRange()
110 bool MemoryCache::RemoveInvalidRange(lldb::addr_t base_addr, in RemoveInvalidRange()
125 size_t MemoryCache::Read(addr_t addr, void *dst, size_t dst_len, in Read()