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

  /art/runtime/gc/space/
image_space.cc 254 std::string oat_filename; local
255 oat_filename += runtime->GetHostPrefix();
256 oat_filename += oat_location->ToModifiedUtf8();
257 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatDataBegin(),
260 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image.";
  /art/dex2oat/
dex2oat.cc 299 const std::string& oat_filename,
307 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location)) {
314 UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str()));
316 PLOG(ERROR) << "Failed to open ELF file: " << oat_filename;
578 std::string oat_filename; local
631 oat_filename = option.substr(strlen("--oat-file=")).data();
704 if (oat_filename.empty() && oat_fd == -1) {
708 if (!oat_filename.empty() && oat_fd != -1) {
797 std::string oat_stripped(oat_filename);
802 oat_unstripped += oat_filename;
    [all...]
  /art/oatdump/
oatdump.cc 1363 const char* oat_filename = NULL; local
    [all...]
  /art/compiler/
image_writer.cc 69 const std::string& oat_filename,
80 UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str()));
82 LOG(ERROR) << "Failed to open oat file " << oat_filename << " for " << oat_location;
87 LOG(ERROR) << "Failed to open writable oat file " << oat_filename << " for " << oat_location;
image_writer.h 50 const std::string& oat_filename,

Completed in 169 milliseconds