Lines Matching refs:mapped_addr
107 range.mapped_addr = 0; in MapWithID()
114 if (mappings_.begin()->mapped_addr >= range.size) { in MapWithID()
115 range.mapped_addr = 0; in MapWithID()
116 range.unmapped_space_after = mappings_.begin()->mapped_addr - range.size; in MapWithID()
127 range.mapped_addr = iter->mapped_addr + iter->size; in MapWithID()
147 << " mapped: " << std::hex << it->mapped_addr in DumpToLog()
154 uint64_t* mapped_addr) const { in GetMappedAddress()
155 CHECK(mapped_addr); in GetMappedAddress()
160 *mapped_addr = iter->mapped_addr + real_addr - iter->real_addr; in GetMappedAddress()
186 uint64_t min = mappings_.begin()->mapped_addr; in GetMaxMappedLength()
190 uint64_t max = iter->mapped_addr + iter->size; in GetMaxMappedLength()