Searched defs:mapped_addr (Results 1 - 3 of 3) sorted by relevance

/system/extras/perfprofd/quipper/
H A Daddress_mapper.h49 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 Dperf_parser.cc415 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 Ddumpcache.c83 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 796 milliseconds