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

  /art/runtime/
oat_file.h 51 // Does not use dlopen underneath so cannot be used for runtime use
231 bool Dlopen(const std::string& elf_filename, byte* requested_base);
255 // dlopen handle during runtime.
oat_file.cc 67 // If we are using PORTABLE, use dlopen to deal with relocations.
78 // On target, dlopen may fail when compiling due to selinux restrictions on installd.
80 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile.
98 bool success = oat_file->Dlopen(elf_filename, requested_base);
130 bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base) {
136 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
139 VLOG(class_linker) << "Failed to dlopen " << elf_filename << ": " << dlerror();

Completed in 319 milliseconds