Home
last modified time | relevance | path

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

/art/runtime/
Dnative_stack_dump.cc375 if (frame.map_info == nullptr) { in DumpNativeStack()
379 const std::shared_ptr<unwindstack::MapInfo>& map_info = frame.map_info; in DumpNativeStack() local
380 if (map_info->name().empty()) { in DumpNativeStack()
381 os << StringPrintf("<anonymous:%" PRIx64 ">", map_info->start()); in DumpNativeStack()
383 os << map_info->name().c_str(); in DumpNativeStack()
385 if (map_info->elf_start_offset() != 0) { in DumpNativeStack()
386 os << StringPrintf(" (offset %" PRIx64 ")", map_info->elf_start_offset()); in DumpNativeStack()
399 if (!map_info->name().empty()) { in DumpNativeStack()
415 std::string build_id = map_info->GetPrintableBuildID(); in DumpNativeStack()
423 Addr2line(frame.map_info->name(), frame.rel_pc, os, prefix, &addr2line_state); in DumpNativeStack()
Ddexopt_test.cc214 for (const android::procinfo::MapInfo& map_info : maps) { in ReserveImageSpace() local
215 ReserveImageSpaceChunk(reservation_start, std::min(map_info.start, reservation_end)); in ReserveImageSpace()
216 reservation_start = std::max(reservation_start, map_info.end); in ReserveImageSpace()
Dbacktrace_helper.cc104 if (frame.map_info != nullptr) { in Collect()
105 std::string full_name = frame.map_info->GetFullName(); in Collect()
/art/imgdiag/
Dpage_info.cc152 const android::procinfo::MapInfo& map_info, in GetMapPageCounts() argument
156 map_page_counts.name = map_info.name; in GetMapPageCounts()
157 map_page_counts.start = map_info.start; in GetMapPageCounts()
158 map_page_counts.end = map_info.end; in GetMapPageCounts()
160 for (uint64_t begin = map_info.start; begin < map_info.end; begin += page_size) { in GetMapPageCounts()
188 "Failed to read present page %" PRIx64 " for mapping %s\n", begin, map_info.name.c_str()); in GetMapPageCounts()
215 for (const android::procinfo::MapInfo& map_info : proc_maps) { in CountZeroPages() local
218 if (!GetMapPageCounts(proc_files, map_info, map_page_counts, error_msg, page_size)) { in CountZeroPages()
219 os << "Error getting map page counts for: " << map_info.name << "\n" << error_msg << "\n\n"; in CountZeroPages()
Dimgdiag.cc1542 for (const android::procinfo::MapInfo& map_info : maps) { in DumpImageDiffMap() local
1545 if (map_info.name.ends_with(image_location_base_name) || in DumpImageDiffMap()
1546 map_info.name.ends_with(image_location_base_name + "]")) { in DumpImageDiffMap()
1547 if ((map_info.flags & PROT_WRITE) != 0) { in DumpImageDiffMap()
1548 return map_info; in DumpImageDiffMap()
/art/tools/signal_dumper/
Dsignal_dumper.cc526 if (frame.map_info == nullptr) { in DumpThread()
530 if (frame.map_info->name().empty()) { in DumpThread()
531 oss << StringPrintf("<anonymous:%" PRIx64 ">", frame.map_info->start()); in DumpThread()
533 oss << frame.map_info->name().c_str(); in DumpThread()
535 if (frame.map_info->offset() != 0) { in DumpThread()
536 oss << StringPrintf(" (offset %" PRIx64 ")", frame.map_info->offset()); in DumpThread()
547 if (!frame.map_info->name().empty()) { in DumpThread()
558 frame.map_info->name(), in DumpThread()
/art/test/137-cfi/
Dcfi.cc117 if (frame.map_info == nullptr) { in CheckStack()
135 const std::string& lib_name = frame.map_info->name(); in CheckStack()
/art/sigchainlib/
Dsigchain.cc111 auto& map = frame.map_info; in LogStack()