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

  /system/extras/simpleperf/
read_apk.h 76 const std::string& elf_filename);
91 std::string GetUrlInApk(const std::string& apk_path, const std::string& elf_filename);
94 ElfStatus GetBuildIdFromApkFile(const std::string& apk_path, const std::string& elf_filename,
97 ElfStatus ParseSymbolsFromApkFile(const std::string& apk_path, const std::string& elf_filename,
read_apk.cpp 114 const std::string& elf_filename) {
128 int32_t rc = FindEntry(handle, ZipString(elf_filename.c_str()), &zentry);
130 LOG(ERROR) << "failed to find " << elf_filename << " in " << apk_path
135 LOG(ERROR) << "shared library " << elf_filename << " in " << apk_path << " is compressed";
138 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, elf_filename, zentry.offset,
162 std::string GetUrlInApk(const std::string& apk_path, const std::string& elf_filename) {
163 return apk_path + "!/" + elf_filename;
174 ElfStatus GetBuildIdFromApkFile(const std::string& apk_path, const std::string& elf_filename,
176 std::unique_ptr<EmbeddedElf> ee = ApkInspector::FindElfInApkByName(apk_path, elf_filename);
183 ElfStatus ParseSymbolsFromApkFile(const std::string& apk_path, const std::string& elf_filename,
    [all...]
  /art/compiler/
elf_writer_test.cc 53 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); local
54 LOG(INFO) << "elf_filename=" << elf_filename;
61 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
62 ASSERT_TRUE(file.get() != nullptr) << elf_filename;
109 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); local
110 LOG(INFO) << "elf_filename=" << elf_filename;
112 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
  /art/runtime/
oat_file.cc 95 const std::string& elf_filename,
118 virtual bool Load(const std::string& elf_filename,
129 virtual void PreSetup(const std::string& elf_filename) = 0;
153 const std::string& elf_filename,
170 if (!ret->Load(elf_filename,
179 if (!ret->ComputeFields(requested_base, elf_filename, error_msg)) {
183 ret->PreSetup(elf_filename);
633 bool Load(const std::string& elf_filename,
641 void PreSetup(const std::string& elf_filename) OVERRIDE;
644 bool Dlopen(const std::string& elf_filename,
    [all...]

Completed in 109 milliseconds