Searched refs:real_addr (Results 1 - 2 of 2) sorted by relevance

/system/extras/perfprofd/quipper/
H A Daddress_mapper.h28 bool Map(const uint64_t real_addr,
32 // Like Map(real_addr, length, remove_existing_mappings). |id| is an
42 bool MapWithID(const uint64_t real_addr,
48 // Looks up |real_addr| and returns the mapped address.
49 bool GetMappedAddress(const uint64_t real_addr, uint64_t* mapped_addr) const;
51 // Looks up |real_addr| and returns the mapping's ID and offset from the
53 bool GetMappedIDAndOffset(const uint64_t real_addr,
78 uint64_t real_addr; member in struct:quipper::AddressMapper::MappedRange
90 return (real_addr <= range.real_addr
[all...]
H A Daddress_mapper.cc15 bool AddressMapper::Map(const uint64_t real_addr, argument
18 return MapWithID(real_addr, size, kuint64max, 0, remove_existing_mappings);
21 bool AddressMapper::MapWithID(const uint64_t real_addr, argument
27 range.real_addr = real_addr;
38 if (real_addr + size - 1 != kuint64max &&
39 !(real_addr + size > real_addr)) {
41 LOG(ERROR) << "Address mapping at " << std::hex << real_addr
77 uint64_t gap_before = range.real_addr
153 GetMappedAddress(const uint64_t real_addr, uint64_t* mapped_addr) const argument
166 GetMappedIDAndOffset(const uint64_t real_addr, uint64_t* id, uint64_t* offset) const argument
[all...]

Completed in 30 milliseconds