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

/art/runtime/gc/space/
H A Dimage_space.cc43 ImageSpace::ImageSpace(const std::string& image_filename, const char* image_location, argument
47 image_location_(image_location) {
198 bool ImageSpace::FindImageFilename(const char* image_location, argument
208 // image_location = /system/framework/boot.art
210 std::string system_image_filename(GetSystemImageFilename(image_location, image_isa));
226 // image_location = /system/framework/boot.art
229 if (!GetDalvikCacheFilename(image_location, dalvik_cache.c_str(), cache_filename, &error_msg)) {
250 // Relocate the image at image_location to dest_filename and relocate it by a random amount.
251 static bool RelocateImage(const char* image_location, const char* dest_filename, argument
262 input_image_location_arg += image_location;
306 ReadImageHeaderOrDie(const char* image_location, const InstructionSet image_isa) argument
316 ReadImageHeader(const char* image_location, const InstructionSet image_isa, std::string* error_msg) argument
438 Create(const char* image_location, const InstructionSet image_isa, std::string* error_msg) argument
625 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
154 std::string img = "-Ximage:" + image_location;
194 bool PatchOat::Patch(File* input_oat, const std::string& image_location, off_t delta, argument
206 CHECK(!image_location
227 << " for location " << image_location; local
[all...]
/art/runtime/
H A Druntime.cc587 const std::string& image_location,
596 bool found_image = gc::space::ImageSpace::FindImageFilename(image_location.c_str(),
612 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_location.c_str());
646 const std::string& image_location,
649 if (!image_location.empty() && OpenDexFilesFromImage(dex_filenames, image_location, dex_files,
586 OpenDexFilesFromImage(const std::vector<std::string>& dex_filenames, const std::string& image_location, std::vector<const DexFile*>& dex_files, size_t* failures) argument
645 OpenDexFiles(const std::vector<std::string>& dex_filenames, const std::string& image_location, std::vector<const DexFile*>& dex_files) argument
H A Dclass_linker.cc1361 const std::string& image_location = space->GetImageLocation(); local
1363 ret = PatchAndRetrieveOat(odex_filename, cache_filename, image_location, isa, &error_msg);
1366 ret = PatchAndRetrieveOat(cache_filename, cache_filename, image_location, isa, &error_msg);
1431 const std::string& image_location,
1459 patched_image_arg += image_location;
1429 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.cc1704 const char* image_location = nullptr; local
1720 image_location = option.substr(strlen("--image=")).data();
1758 if (image_location == nullptr && oat_filename == nullptr) {
1763 if (image_location != nullptr && oat_filename != nullptr) {
1804 if (image_location != nullptr) {
1806 image_option += image_location;
1827 fprintf(stderr, "Invalid image header %s\n", image_location);

Completed in 122 milliseconds