Home
last modified time | relevance | path

Searched refs:image_filenames (Results 1 – 4 of 4) sorted by relevance

/art/runtime/gc/space/
Dimage_space.h135 std::vector<std::string>* image_filenames);
/art/compiler/
Dimage_writer.cc165 const std::vector<const char*>& image_filenames, in Write() argument
169 CHECK(!image_filenames.empty()); in Write()
171 CHECK_EQ(image_filenames.size(), 1u); in Write()
174 CHECK_EQ(image_filenames.size(), oat_filenames.size()); in Write()
191 for (size_t i = 0; i < image_filenames.size(); ++i) { in Write()
192 const char* image_filename = image_filenames[i]; in Write()
Dimage_writer.h117 const std::vector<const char*>& image_filenames,
/art/dex2oat/
Ddex2oat.cc1337 std::vector<std::string> image_filenames; in Setup() local
1339 image_filenames.push_back(image_space->GetImageFilename()); in Setup()
1341 std::string image_file_location = Join(image_filenames, ':'); in Setup()