Searched refs:elf_filename (Results 1 - 3 of 3) sorted by relevance

/art/compiler/
H A Delf_writer_test.cc57 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); local
58 LOG(INFO) << "elf_filename=" << elf_filename;
68 void* dl_oat_so = dlopen(elf_filename.c_str(), RTLD_NOW);
87 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
/art/runtime/
H A Doat_file.cc115 OatFile* OatFile::OpenDlopen(const std::string& elf_filename, argument
120 bool success = oat_file->Dlopen(elf_filename, requested_base, error_msg);
158 bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base, argument
160 char* absolute_path = realpath(elf_filename.c_str(), NULL);
162 *error_msg = StringPrintf("Failed to find absolute path for '%s'", elf_filename.c_str());
168 *error_msg = StringPrintf("Failed to dlopen '%s': %s", elf_filename.c_str(), dlerror());
173 *error_msg = StringPrintf("Failed to find oatdata symbol in '%s': %s", elf_filename.c_str(),
186 *error_msg = StringPrintf("Failed to find oatlastword symbol in '%s': %s", elf_filename.c_str(),
H A Doat_file.h295 static OatFile* OpenDlopen(const std::string& elf_filename,
309 bool Dlopen(const std::string& elf_filename, byte* requested_base, std::string* error_msg);

Completed in 47 milliseconds