Home
last modified time | relevance | path

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

/hardware/google/aemu/host-common/
Daddress_space_device.cpp324 auto it = mMemoryMappings.begin(); in clear()
326 for (auto it: mMemoryMappings) { in clear()
334 mMemoryMappings.clear(); in clear()
398 if (mMemoryMappings.insert({gpa, {ptr, size}}).second) { in addMemoryMappingLocked()
411 if (mMemoryMappings.erase(gpa) > 0) { in removeMemoryMappingLocked()
424 auto i = mMemoryMappings.lower_bound(gpa); // i->first >= gpa (or i==end) in getHostPtrLocked()
425 if ((i != mMemoryMappings.end()) && (i->first == gpa)) { in getHostPtrLocked()
427 } else if (i == mMemoryMappings.begin()) { in getHostPtrLocked()
442 std::map<uint64_t, std::pair<void *, uint64_t>> mMemoryMappings; // do not save/load member in __anon3a2ffc730111::AddressSpaceDeviceState