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

/art/runtime/gc/space/
H A Dimage_space.h51 static ImageHeader* ReadImageHeaderOrDie(const char* image_location,
57 static ImageHeader* ReadImageHeader(const char* image_location,
109 // requested image_location, or the filename where a new image
114 static bool FindImageFilename(const char* image_location,
131 static ImageSpace* Init(const char* image_filename, const char* image_location,
147 ImageSpace(const std::string& name, const char* image_location,
H A Dimage_space.cc46 ImageSpace::ImageSpace(const std::string& image_filename, const char* image_location, argument
51 image_location_(image_location) {
234 bool ImageSpace::FindImageFilename(const char* image_location, argument
244 // image_location = /system/framework/boot.art
246 std::string system_image_filename(GetSystemImageFilename(image_location, image_isa));
262 // image_location = /system/framework/boot.art
265 if (!GetDalvikCacheFilename(image_location, dalvik_cache.c_str(), cache_filename, &error_msg)) {
286 // Relocate the image at image_location to dest_filename and relocate it by a random amount.
287 static bool RelocateImage(const char* image_location, const char* dest_filename, argument
298 input_image_location_arg += image_location;
342 ReadImageHeaderOrDie(const char* image_location, const InstructionSet image_isa) argument
352 ReadImageHeader(const char* image_location, const InstructionSet image_isa, std::string* error_msg) argument
474 Create(const char* image_location, const InstructionSet image_isa, std::string* error_msg) argument
661 Init(const char* image_filename, const char* image_location, bool validate_oat_file, std::string* error_msg) argument
[all...]
/art/compiler/
H A Dimage_test.cc50 ScratchFile image_location(location, ".art");
52 std::string image_filename(GetSystemImageFilename(image_location.GetFilename().c_str(),
150 image.append(image_location.GetFilename());
/art/patchoat/
H A Dpatchoat.cc57 // image_location = /system/framework/boot.art
76 // image_location = /system/framework/boot.art
95 bool PatchOat::Patch(const std::string& image_location, off_t delta, argument
101 CHECK(!image_location.empty()) << "image file must have a filename.";
107 if (!LocationToFilename(image_location, isa, &image_filename)) {
108 LOG(ERROR) << "Unable to find image at location " << image_location;
114 << " for location " << image_location; local
138 std::string img = "-Ximage:" + image_location;
178 bool PatchOat::Patch(File* input_oat, const std::string& image_location, off_t delta, argument
190 CHECK(!image_location
211 << " for location " << image_location; local
[all...]
/art/imgdiag/
H A Dimgdiag.cc52 const char* image_location,
56 image_location_(image_location),
845 static int DumpImage(Runtime* runtime, const char* image_location, argument
853 fprintf(stderr, "Invalid image header %s\n", image_location);
857 ImgDiagDumper img_diag_dumper(os, image_header, image_location, image_diff_pid);
50 ImgDiagDumper(std::ostream* os, const ImageHeader& image_header, const char* image_location, pid_t image_diff_pid) argument
/art/runtime/
H A Druntime.cc697 static bool OpenDexFilesFromImage(const std::string& image_location, argument
707 bool found_image = gc::space::ImageSpace::FindImageFilename(image_location.c_str(),
723 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_location.c_str());
758 const std::string& image_location,
762 if (!image_location.empty() && OpenDexFilesFromImage(image_location, dex_files, &failure_count)) {
756 OpenDexFiles(const std::vector<std::string>& dex_filenames, const std::vector<std::string>& dex_locations, const std::string& image_location, std::vector<std::unique_ptr<const DexFile>>* dex_files) argument
H A Doat_file_assistant.cc695 std::string image_location = ImageLocation(); local
696 if (image_location.empty()) {
733 argv.push_back("--boot-image=" + image_location);
/art/oatdump/
H A Doatdump.cc2188 static int DumpImage(Runtime* runtime, const char* image_location, OatDumperOptions* options, argument
2200 fprintf(stderr, "Invalid image header %s\n", image_location);

Completed in 2940 milliseconds