Home
last modified time | relevance | path

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

/art/runtime/
Dsignal_catcher.cc136 std::string maps; in HandleSigQuit() local
137 if (android::base::ReadFileToString("/proc/self/maps", &maps)) { in HandleSigQuit()
138 os << "/proc/self/maps:\n" << maps; in HandleSigQuit()
Doat_file_manager.cc423 static std::vector<const DexFile::Header*> GetDexFileHeaders(const std::vector<MemMap>& maps) { in GetDexFileHeaders() argument
425 headers.reserve(maps.size()); in GetDexFileHeaders()
426 for (const MemMap& map : maps) { in GetDexFileHeaders()
/art/test/141-class-unload/
Dexpected.txt24 Number of loaded unload-ex maps 0
/art/test/541-regression-inlined-deopt/
Dinfo.txt4 maps at the various inlining depths were similar.
/art/dexlayout/
Ddexdiag.cc500 const std::vector<Vma>& maps = proc.MapsWithoutUsageStats(); in DexDiagMain() local
501 if (maps.empty()) { in DexDiagMain()
509 for (auto& vma : maps) { in DexDiagMain()
/art/imgdiag/
Dimgdiag.cc1447 auto find_boot_map = [&os, &image_location_base_name](BacktraceMap& maps, const char* tag) in DumpImageDiffMap()
1450 for (const backtrace_map_t* map : maps) { in DumpImageDiffMap()
/art/dex2oat/linker/
Doat_writer.cc3517 std::vector<MemMap> maps; in OpenDexFiles() local
3520 maps.emplace_back(oat_dex_file.source_.GetZipEntry()->MapDirectlyOrExtract( in OpenDexFiles()
3522 MemMap* map = &maps.back(); in OpenDexFiles()
3544 *opened_dex_files_map = std::move(maps); in OpenDexFiles()