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

  /art/runtime/
oat_file.h 57 // Does not use dlopen underneath so cannot be used for runtime use
309 bool Dlopen(const std::string& elf_filename, byte* requested_base, std::string* error_msg);
336 // dlopen handle during runtime.
oat_file.cc 77 // If we are using PORTABLE, use dlopen to deal with relocations.
86 // On target, dlopen may fail when compiling due to selinux restrictions on installd.
88 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile.
120 bool success = oat_file->Dlopen(elf_filename, requested_base, error_msg);
158 bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base,
165 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
168 *error_msg = StringPrintf("Failed to dlopen '%s': %s", elf_filename.c_str(), dlerror());

Completed in 50 milliseconds