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

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

Completed in 370 milliseconds