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

  /art/runtime/
image.h 97 std::string oat_filename = image; local
98 if (oat_filename.length() <= 3) {
99 oat_filename += ".oat";
101 oat_filename.replace(oat_filename.length() - 3, 3, "oat");
103 return oat_filename;
runtime.cc 611 std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(system_filename.c_str()); local
613 std::unique_ptr<File> file(OS::OpenFileForReading(oat_filename.c_str()));
624 LOG(INFO) << "Unable to use '" << oat_filename << "' because " << error_msg;
    [all...]
  /art/runtime/gc/space/
image_space.cc 740 std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(image_path); local
744 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatDataBegin(),
749 oat_filename.c_str(), GetName(), error_msg->c_str());
    [all...]
  /art/dex2oat/
dex2oat.cc 467 const std::string& oat_filename,
475 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location,
486 std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str()));
488 PLOG(ERROR) << "Failed to open ELF file: " << oat_filename;
499 PLOG(ERROR) << "Failed to flush and close patched oat file " << oat_filename;
856 std::string oat_filename; local
1700 PLOG(ERROR) << "Failed to flush and close oat file: " << oat_location << "\/" << oat_filename; local
    [all...]
  /art/oatdump/
oatdump.cc 1703 const char* oat_filename = nullptr; local
    [all...]

Completed in 85 milliseconds