Searched refs:image_filename (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.cc57 ImageSpace::ImageSpace(const std::string& image_filename, argument
62 : MemMapSpace(image_filename,
95 static bool GenerateImage(const std::string& image_filename, argument
117 image_option_string += image_filename;
125 oat_file_option_string += ImageHeader::GetOatLocationFromImageLocation(image_filename);
189 // *image_filename = /data/dalvik-cache/<image_isa>/boot.art
477 const std::string& image_filename,
494 image_lock.Init(image_filename.c_str(),
498 VLOG(startup) << "Using image file " << image_filename.c_str() << " for image location "
506 return Init(image_filename
749 LoadImageFile(const char* image_filename, const char* image_location, const ImageHeader& image_header, uint8_t* address, int fd, TimingLogger& logger, std::string* error_msg) argument
1763 std::string image_filename = image_filenames[i]; local
[all...]
H A Dimage_space.h172 static std::unique_ptr<ImageSpace> Init(const char* image_filename,
/art/compiler/
H A Dimage_test.cc169 std::string image_filename(GetSystemImageFilename(file.GetFilename().c_str(), kRuntimeISA));
170 image_filenames.push_back(image_filename);
171 size_t pos = image_filename.rfind('/');
172 CHECK_NE(pos, std::string::npos) << image_filename;
174 image_dir = image_filename.substr(0, pos);
178 image_files.push_back(ScratchFile(OS::CreateEmptyFile(image_filename.c_str())));
183 for (const std::string& image_filename : image_filenames) {
184 std::string oat_filename = ReplaceFileExtension(image_filename, "oat");
187 std::string vdex_filename = ReplaceFileExtension(image_filename, "vdex");
H A Dimage_writer.cc198 const char* image_filename = image_filenames[i]; local
202 if (strlen(image_filename) == 0u) {
210 LOG(ERROR) << "image fd " << image_fd << " name " << image_filename; local
213 image_file.reset(OS::CreateEmptyFile(image_filename));
217 LOG(ERROR) << "Failed to open image file " << image_filename;
222 PLOG(ERROR) << "Failed to make image file world readable: " << image_filename;
293 PLOG(ERROR) << "Failed to write image file data " << image_filename;
310 PLOG(ERROR) << "Failed to write image file " << image_filename;
317 PLOG(ERROR) << "Failed to flush image file " << image_filename << " with result " << err;
329 PLOG(ERROR) << "Failed to write image file header " << image_filename;
[all...]
/art/oatdump/
H A Doatdump.cc1816 std::string image_filename = image_space_.GetImageFilename(); local
1817 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
1896 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
1899 LOG(WARNING) << "Failed to find image in " << image_filename;
/art/dex2oat/
H A Ddex2oat.cc2665 std::string StripIsaFrom(const char* image_filename, InstructionSet isa) { argument
2666 std::string res(image_filename);

Completed in 667 milliseconds