Searched refs:oat_filename (Results 1 – 5 of 5) sorted by relevance
/art/runtime/gc/space/ |
D | image_space.cc | 254 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/ |
D | dex2oat.cc | 299 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/ |
D | oatdump.cc | 1363 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/ |
D | image_writer.cc | 69 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()
|
D | image_writer.h | 50 const std::string& oat_filename,
|