Searched refs:elf_filename (Results 1 – 3 of 3) sorted by relevance
/art/compiler/ |
D | elf_writer_test.cc | 57 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); in TEST_F() local 58 LOG(INFO) << "elf_filename=" << elf_filename; in TEST_F() 68 void* dl_oat_so = dlopen(elf_filename.c_str(), RTLD_NOW); in TEST_F() 87 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str())); in TEST_F()
|
/art/runtime/ |
D | oat_file.cc | 115 OatFile* OatFile::OpenDlopen(const std::string& elf_filename, in OpenDlopen() argument 120 bool success = oat_file->Dlopen(elf_filename, requested_base, error_msg); in OpenDlopen() 158 bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base, in Dlopen() argument 160 char* absolute_path = realpath(elf_filename.c_str(), NULL); in Dlopen() 162 *error_msg = StringPrintf("Failed to find absolute path for '%s'", elf_filename.c_str()); in Dlopen() 168 *error_msg = StringPrintf("Failed to dlopen '%s': %s", elf_filename.c_str(), dlerror()); in Dlopen() 173 *error_msg = StringPrintf("Failed to find oatdata symbol in '%s': %s", elf_filename.c_str(), in Dlopen() 186 *error_msg = StringPrintf("Failed to find oatlastword symbol in '%s': %s", elf_filename.c_str(), in Dlopen()
|
D | oat_file.h | 295 static OatFile* OpenDlopen(const std::string& elf_filename, 309 bool Dlopen(const std::string& elf_filename, byte* requested_base, std::string* error_msg);
|