Home | History | Annotate | Download | only in space

Lines Matching defs:image_filename

43 ImageSpace::ImageSpace(const std::string& image_filename, const char* image_location,
45 : MemMapSpace(image_filename, mem_map, mem_map->Begin(), mem_map->End(), mem_map->End(),
142 static bool GenerateImage(const std::string& image_filename, InstructionSet image_isa,
163 image_option_string += image_filename;
171 oat_file_option_string += ImageHeader::GetOatLocationFromImageLocation(image_filename);
227 // *image_filename = /data/dalvik-cache/<image_isa>/boot.art
459 const std::string* image_filename;
472 image_filename = &cache_filename;
494 image_filename = &cache_filename;
510 image_filename = &cache_filename;
516 image_filename = &cache_filename;
519 image_filename = &system_filename;
523 image_filename = &system_filename;
527 image_filename = &cache_filename;
536 image_lock.Init(image_filename->c_str(), error_msg);
537 VLOG(startup) << "Using image file " << image_filename->c_str() << " for image location "
543 space = ImageSpace::Init(image_filename->c_str(), image_location,
563 image_filename->c_str(), error_msg->c_str());
625 ImageSpace* ImageSpace::Init(const char* image_filename, const char* image_location,
627 CHECK(image_filename != nullptr);
633 LOG(INFO) << "ImageSpace::Init entering image_filename=" << image_filename;
636 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename));
638 *error_msg = StringPrintf("Failed to open '%s'", image_filename);
644 *error_msg = StringPrintf("Invalid image header in '%s'", image_filename);
656 image_filename,
670 image_filename,
677 std::string bitmap_name(StringPrintf("imagespace %s live-bitmap %u", image_filename,
688 std::unique_ptr<ImageSpace> space(new ImageSpace(image_filename, image_location,
697 space->oat_file_.reset(space->OpenOatFile(image_filename, error_msg));