Home
last modified time | relevance | path

Searched refs:oat_filename (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/space/
Dimage_space.cc254 std::string oat_filename; in OpenOatFile() local
255 oat_filename += runtime->GetHostPrefix(); in OpenOatFile()
256 oat_filename += oat_location->ToModifiedUtf8(); in OpenOatFile()
257 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatDataBegin(), in OpenOatFile()
260 LOG(ERROR) << "Failed to open oat file " << oat_filename << " referenced from image."; in OpenOatFile()
/art/dex2oat/
Ddex2oat.cc299 const std::string& oat_filename, in CreateImageFile() argument
307 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location)) { in CreateImageFile()
314 UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str())); in CreateImageFile()
316 PLOG(ERROR) << "Failed to open ELF file: " << oat_filename; in CreateImageFile()
583 std::string oat_filename; in dex2oat() local
636 oat_filename = option.substr(strlen("--oat-file=")).data(); in dex2oat()
709 if (oat_filename.empty() && oat_fd == -1) { in dex2oat()
713 if (!oat_filename.empty() && oat_fd != -1) { in dex2oat()
802 std::string oat_stripped(oat_filename); in dex2oat()
807 oat_unstripped += oat_filename; in dex2oat()
[all …]
/art/oatdump/
Doatdump.cc1363 const char* oat_filename = NULL; in oatdump() local
1374 oat_filename = option.substr(strlen("--oat-file=")).data(); in oatdump()
1395 if (image_filename == NULL && oat_filename == NULL) { in oatdump()
1400 if (image_filename != NULL && oat_filename != NULL) { in oatdump()
1414 if (oat_filename != NULL) { in oatdump()
1416 OatFile::Open(oat_filename, oat_filename, NULL, false); in oatdump()
1418 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename); in oatdump()
/art/compiler/
Dimage_writer.cc69 const std::string& oat_filename, in Write() argument
80 UniquePtr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str())); in Write()
82 LOG(ERROR) << "Failed to open oat file " << oat_filename << " for " << oat_location; in Write()
87 LOG(ERROR) << "Failed to open writable oat file " << oat_filename << " for " << oat_location; in Write()
Dimage_writer.h50 const std::string& oat_filename,