HomeSort by relevance Sort by last modified time
    Searched full:elf_filename (Results 1 - 4 of 4) sorted by null

  /system/extras/simpleperf/
read_apk.cpp 114 const std::string& elf_filename, uint64_t* offset,
129 int32_t rc = FindEntry(handle, ZipString(elf_filename.c_str()), &zentry);
131 LOG(ERROR) << "failed to find " << elf_filename << " in " << apk_path
136 LOG(ERROR) << "shared library " << elf_filename << " in " << apk_path << " is compressed";
145 const std::string& elf_filename) {
148 if (!FindOffsetInApkByName(apk_path, elf_filename, &offset, &uncompressed_length)) {
151 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, elf_filename, offset,
175 std::string GetUrlInApk(const std::string& apk_path, const std::string& elf_filename) {
176 return apk_path + "!/" + elf_filename;
187 ElfStatus GetBuildIdFromApkFile(const std::string& apk_path, const std::string& elf_filename,
    [all...]
read_apk.h 75 const std::string& elf_filename,
79 const std::string& elf_filename);
94 std::string GetUrlInApk(const std::string& apk_path, const std::string& elf_filename);
97 ElfStatus GetBuildIdFromApkFile(const std::string& apk_path, const std::string& elf_filename,
100 ElfStatus ParseSymbolsFromApkFile(const std::string& apk_path, const std::string& elf_filename,
  /art/dex2oat/linker/
elf_writer_test.cc 55 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); local
56 LOG(INFO) << "elf_filename=" << elf_filename;
63 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
64 ASSERT_TRUE(file.get() != nullptr) << elf_filename;
111 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); local
112 LOG(INFO) << "elf_filename=" << elf_filename;
114 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
  /art/runtime/
oat_file.cc 102 const std::string& elf_filename,
145 virtual bool Load(const std::string& elf_filename,
163 virtual void PreSetup(const std::string& elf_filename) = 0;
188 const std::string& elf_filename,
201 if (!ret->Load(elf_filename,
210 if (!ret->ComputeFields(requested_base, elf_filename, error_msg)) {
218 ret->PreSetup(elf_filename);
    [all...]

Completed in 88 milliseconds