Home
last modified time | relevance | path

Searched refs:oat_location (Results 1 – 8 of 8) sorted by relevance

/art/dex2oat/
Ddex2oat.cc300 const std::string& oat_location, in CreateImageFile() argument
307 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location)) { in CreateImageFile()
585 std::string oat_location; in dex2oat() local
654 oat_location = option.substr(strlen("--oat-location=")).data(); in dex2oat()
818 if (oat_location.empty()) { in dex2oat()
819 oat_location = oat_filename; in dex2oat()
822 oat_file.reset(new File(oat_fd, oat_location)); in dex2oat()
826 PLOG(ERROR) << "Failed to create oat file: " << oat_location; in dex2oat()
830 PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location; in dex2oat()
835 LOG(INFO) << "dex2oat: " << oat_location; in dex2oat()
[all …]
/art/runtime/
Dclass_linker.cc694 const std::string& oat_location) { in FindDexFileInOatLocation() argument
695 UniquePtr<OatFile> oat_file(OatFile::Open(oat_location, oat_location, NULL, in FindDexFileInOatLocation()
698 VLOG(class_linker) << "Failed to find existing oat file at " << oat_location; in FindDexFileInOatLocation()
706 VLOG(class_linker) << "Failed to find oat file at " << oat_location in FindDexFileInOatLocation()
715 VLOG(class_linker) << "Failed to find oat file at " << oat_location in FindDexFileInOatLocation()
722 …VLOG(class_linker) << "Failed to find oat file at " << oat_location << " containing " << dex_locat… in FindDexFileInOatLocation()
728 VLOG(class_linker) << "Failed to find oat file at " << oat_location in FindDexFileInOatLocation()
739 const std::string& oat_location) { in FindOrCreateOatFileForDexLocation() argument
741 return FindOrCreateOatFileForDexLocationLocked(dex_location, dex_location_checksum, oat_location); in FindOrCreateOatFileForDexLocation()
800 … const std::string& oat_location) { in FindOrCreateOatFileForDexLocationLocked() argument
[all …]
Dclass_linker.h262 const std::string& oat_location)
267 const std::string& oat_location)
503 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location)
507 const std::string& oat_location)
/art/runtime/native/
Ddalvik_system_DexFile.cc113 std::string oat_location(outputName.c_str()); in DexFile_openDexFileNative() local
114 …ile = linker->FindOrCreateOatFileForDexLocation(dex_location, dex_location_checksum, oat_location); in DexFile_openDexFileNative()
/art/runtime/gc/space/
Dimage_space.cc252 mirror::String* oat_location = in OpenOatFile() local
256 oat_filename += oat_location->ToModifiedUtf8(); in OpenOatFile()
/art/compiler/
Dimage_writer.cc70 const std::string& oat_location) { in Write() argument
82 LOG(ERROR) << "Failed to open oat file " << oat_filename << " for " << oat_location; in Write()
85 oat_file_ = OatFile::OpenWritable(oat_file.get(), oat_location); in Write()
87 LOG(ERROR) << "Failed to open writable oat file " << oat_filename << " for " << oat_location; in Write()
Dimage_writer.h51 const std::string& oat_location)
/art/oatdump/
Doatdump.cc723 std::string oat_location(oat_location_object->AsString()->ToModifiedUtf8()); in Dump() local
724 os << "OAT LOCATION: " << oat_location; in Dump()
726 oat_location = host_prefix_ + oat_location; in Dump()
727 os << " (" << oat_location << ")"; in Dump()
730 const OatFile* oat_file = class_linker->FindOatFileFromOatLocation(oat_location); in Dump()