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

/art/runtime/gc/space/
H A Dimage_space.cc47 ImageSpace::ImageSpace(const std::string& image_filename, argument
52 : MemMapSpace(image_filename,
81 static bool GenerateImage(const std::string& image_filename, InstructionSet image_isa, argument
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; local
408 image_filename = &cache_filename;
441 image_filename = &cache_filename;
457 image_filename
1149 Init(const char* image_filename, const char* image_location, bool validate_oat_file, const OatFile* oat_file, std::string* error_msg) argument
1278 image_filename, local
1526 std::string image_filename = image_filenames[i]; local
[all...]
H A Dimage_space.h165 static ImageSpace* Init(const char* image_filename,
/art/compiler/
H A Dimage_test.cc138 std::string image_filename(GetSystemImageFilename(file.GetFilename().c_str(), kRuntimeISA));
139 image_filenames.push_back(image_filename);
140 size_t pos = image_filename.rfind('/');
141 CHECK_NE(pos, std::string::npos) << image_filename;
143 image_dir = image_filename.substr(0, pos);
147 image_files.push_back(ScratchFile(OS::CreateEmptyFile(image_filename.c_str())));
151 for (const std::string& image_filename : image_filenames) {
152 std::string oat_filename(image_filename.substr(0, image_filename.size() - strlen("art")) + "oat");
H A Dimage_writer.cc192 const char* image_filename = image_filenames[i]; local
196 if (strlen(image_filename) == 0u) {
204 LOG(ERROR) << "image fd " << image_fd << " name " << image_filename; local
207 image_file.reset(OS::CreateEmptyFile(image_filename));
211 LOG(ERROR) << "Failed to open image file " << image_filename;
216 PLOG(ERROR) << "Failed to make image file world readable: " << image_filename;
286 PLOG(ERROR) << "Failed to write image file data " << image_filename;
303 PLOG(ERROR) << "Failed to write image file " << image_filename;
310 PLOG(ERROR) << "Failed to flush image file " << image_filename << " with result " << err;
322 PLOG(ERROR) << "Failed to write image file header " << image_filename;
[all...]
/art/oatdump/
H A Doatdump.cc1366 std::string image_filename = image_space_.GetImageFilename(); local
1367 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename);
1446 std::unique_ptr<File> file(OS::OpenFileForReading(image_filename.c_str()));
1449 LOG(WARNING) << "Failed to find image in " << image_filename;
/art/dex2oat/
H A Ddex2oat.cc2404 std::string StripIsaFrom(const char* image_filename, InstructionSet isa) { argument
2405 std::string res(image_filename);

Completed in 3008 milliseconds