Searched defs:image_location (Results 1 - 5 of 5) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.cc42 ImageSpace::ImageSpace(const std::string& image_filename, const char* image_location, argument
46 image_location_(image_location) {
173 bool ImageSpace::FindImageFilename(const char* image_location, argument
183 // image_location = /system/framework/boot.art
185 std::string system_image_filename(GetSystemImageFilename(image_location, image_isa));
201 // image_location = /system/framework/boot.art
204 if (!GetDalvikCacheFilename(image_location, dalvik_cache.c_str(), cache_filename, &error_msg)) {
225 // Relocate the image at image_location to dest_filename and relocate it by a random amount.
226 static bool RelocateImage(const char* image_location, const char* dest_filename, argument
237 input_image_location_arg += image_location;
281 ReadImageHeaderOrDie(const char* image_location, const InstructionSet image_isa) argument
291 ReadImageHeader(const char* image_location, const InstructionSet image_isa, std::string* error_msg) argument
378 Create(const char* image_location, const InstructionSet image_isa, std::string* error_msg) argument
554 Init(const char* image_filename, const char* image_location, bool validate_oat_file, std::string* error_msg) argument
[all...]
/art/patchoat/
H A Dpatchoat.cc73 // image_location = /system/framework/boot.art
92 // image_location = /system/framework/boot.art
111 bool PatchOat::Patch(const std::string& image_location, off_t delta, argument
117 CHECK(!image_location.empty()) << "image file must have a filename.";
123 if (!LocationToFilename(image_location, isa, &image_filename)) {
124 LOG(ERROR) << "Unable to find image at location " << image_location;
130 << " for location " << image_location; local
149 std::string img = "-Ximage:" + image_location;
189 bool PatchOat::Patch(const File* input_oat, const std::string& image_location, off_t delta, argument
199 CHECK(!image_location
220 << " for location " << image_location; local
[all...]
/art/runtime/
H A Druntime.cc571 const std::string& image_location,
580 bool found_image = gc::space::ImageSpace::FindImageFilename(image_location.c_str(),
596 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_location.c_str());
630 const std::string& image_location,
633 if (!image_location.empty() && OpenDexFilesFromImage(dex_filenames, image_location, dex_files,
570 OpenDexFilesFromImage(const std::vector<std::string>& dex_filenames, const std::string& image_location, std::vector<const DexFile*>& dex_files, size_t* failures) argument
629 OpenDexFiles(const std::vector<std::string>& dex_filenames, const std::string& image_location, std::vector<const DexFile*>& dex_files) argument
H A Dclass_linker.cc1339 const std::string& image_location = space->GetImageLocation(); local
1341 ret = PatchAndRetrieveOat(odex_filename, cache_filename, image_location, isa, &error_msg);
1344 ret = PatchAndRetrieveOat(cache_filename, cache_filename, image_location, isa, &error_msg);
1409 const std::string& image_location,
1435 patched_image_arg += image_location;
1407 PatchAndRetrieveOat(const std::string& input_oat, const std::string& output_oat, const std::string& image_location, InstructionSet isa, std::string* error_msg) argument
/art/oatdump/
H A Doatdump.cc1689 const char* image_location = nullptr; local
1705 image_location = option.substr(strlen("--image=")).data();
1743 if (image_location == nullptr && oat_filename == nullptr) {
1748 if (image_location != nullptr && oat_filename != nullptr) {
1789 if (image_location != nullptr) {
1791 image_option += image_location;
1812 fprintf(stderr, "Invalid image header %s\n", image_location);

Completed in 982 milliseconds