Home | History | Annotate | Download | only in Target

Lines Matching refs:addr_t

52 MemoryCache::Flush (addr_t addr, size_t size)
62 const addr_t end_addr = (addr + size - 1);
63 const addr_t first_cache_line_addr = addr - (addr % cache_line_byte_size);
64 const addr_t last_cache_line_addr = end_addr - (end_addr % cache_line_byte_size);
74 for (addr_t curr_addr = first_cache_line_addr;
85 MemoryCache::AddInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size)
97 MemoryCache::RemoveInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size)
116 MemoryCache::Read (addr_t addr,
126 addr_t curr_addr = addr - (addr % cache_line_byte_size);
127 addr_t cache_offset = addr - curr_addr;
208 AllocatedBlock::AllocatedBlock (lldb::addr_t addr,
226 lldb::addr_t
229 addr_t addr = LLDB_INVALID_ADDRESS;
339 AllocatedBlock::FreeBlock (addr_t addr)
393 addr_t addr = m_process.DoAllocateMemory(page_byte_size, permissions, error);
412 lldb::addr_t
419 addr_t addr = LLDB_INVALID_ADDRESS;
441 AllocatedMemoryCache::DeallocateMemory (lldb::addr_t addr)