Searched refs:mapped_addr (Results 1 - 4 of 4) sorted by relevance
/system/extras/perfprofd/quipper/ |
H A D | address_mapper.cc | 107 range.mapped_addr = 0; 114 if (mappings_.begin()->mapped_addr >= range.size) { 115 range.mapped_addr = 0; 116 range.unmapped_space_after = mappings_.begin()->mapped_addr - range.size; 127 range.mapped_addr = iter->mapped_addr + iter->size; 147 << " mapped: " << std::hex << it->mapped_addr 154 uint64_t* mapped_addr) const { 155 CHECK(mapped_addr); 160 *mapped_addr [all...] |
H A D | address_mapper.h | 49 bool GetMappedAddress(const uint64_t real_addr, uint64_t* mapped_addr) const; 79 uint64_t mapped_addr; member in struct:quipper::AddressMapper::MappedRange
|
H A D | perf_parser.cc | 415 uint64_t mapped_addr = 0; local 420 bool mapped = mapper->GetMappedAddress(ip, &mapped_addr); 423 mapped = mapper->GetMappedAddress(ip, &mapped_addr); 454 *new_ip = mapped_addr; 520 uint64_t mapped_addr; local 521 CHECK(mapper->GetMappedAddress(start, &mapped_addr)); 522 *p_start = mapped_addr;
|
/system/extras/pagecache/ |
H A D | dumpcache.c | 83 void* mapped_addr = mmap(NULL, sb->st_size, PROT_NONE, MAP_SHARED, fd, 0); local 85 if (mapped_addr != MAP_FAILED) { 89 int ret = mincore(mapped_addr, sb->st_size, mincore_data); 100 munmap(mapped_addr, sb->st_size);
|
Completed in 63 milliseconds