Home
last modified time | relevance | path

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

/art/runtime/
Dsignal_catcher.cc135 std::string maps; in HandleSigQuit() local
136 if (ReadFileToString("/proc/self/maps", &maps)) { in HandleSigQuit()
137 os << "/proc/self/maps:\n" << maps; in HandleSigQuit()
Doat_file_manager.cc658 static std::vector<const DexFile::Header*> GetDexFileHeaders(const std::vector<MemMap>& maps) { in GetDexFileHeaders() argument
660 headers.reserve(maps.size()); in GetDexFileHeaders()
661 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/tools/amm/models/
DDexCode.md7 mapped `.vdex` file read from `/proc/self/maps`. Different Android platform
DSoCode.md4 sizes of all loaded `.so` files. It is calculated by reading `/proc/self/maps`.
/art/dexlayout/
Ddexdiag.cc498 const std::vector<Vma>& maps = proc.Maps(); in DexDiagMain() local
499 if (maps.empty()) { in DexDiagMain()
507 for (auto& vma : maps) { in DexDiagMain()
/art/imgdiag/
Dimgdiag.cc1441 auto find_boot_map = [&os, &image_location_base_name](BacktraceMap& maps, const char* tag) in DumpImageDiffMap()
1444 for (const backtrace_map_t* map : maps) { in DumpImageDiffMap()
/art/dex2oat/linker/
Doat_writer.cc3680 std::vector<MemMap> maps; in OpenDexFiles() local
3683 maps.emplace_back(oat_dex_file.source_.GetZipEntry()->MapDirectlyOrExtract( in OpenDexFiles()
3685 MemMap* map = &maps.back(); in OpenDexFiles()
3707 *opened_dex_files_map = std::move(maps); in OpenDexFiles()