Home | History | Annotate | Download | only in space

Lines Matching refs:image_filename

47 ImageSpace::ImageSpace(const std::string& image_filename,
52 : MemMapSpace(image_filename,
81 static bool GenerateImage(const std::string& image_filename, InstructionSet image_isa,
102 image_option_string += image_filename;
110 oat_file_option_string += ImageHeader::GetOatLocationFromImageLocation(image_filename);
169 // *image_filename = /data/dalvik-cache/<image_isa>/boot.art
395 const std::string* image_filename;
408 image_filename = &cache_filename;
441 image_filename = &cache_filename;
457 image_filename = &cache_filename;
463 image_filename = &cache_filename;
466 image_filename = &system_filename;
470 image_filename = &system_filename;
474 image_filename = &cache_filename;
489 image_lock.Init(image_filename->c_str(),
493 VLOG(startup) << "Using image file " << image_filename->c_str() << " for image location "
501 space = ImageSpace::Init(image_filename->c_str(),
514 if (!is_system && !CheckSpace(*image_filename, error_msg)) {
535 image_filename->c_str(), error_msg->c_str());
1149 ImageSpace* ImageSpace::Init(const char* image_filename,
1154 CHECK(image_filename != nullptr);
1158 VLOG(image) << "ImageSpace::Init entering image_filename=" << image_filename;
1163 file.reset(OS::OpenFileForReading(image_filename));
1165 *error_msg = StringPrintf("Failed to open '%s'", image_filename);
1175 image_filename);
1197 image_filename);
1252 image_filename,
1278 image_filename,
1322 image_filename,
1333 image_filename,
1364 std::unique_ptr<ImageSpace> space(new ImageSpace(image_filename,
1377 space->oat_file_.reset(space->OpenOatFile(image_filename, error_msg));