Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.h128 std::vector<std::string>* image_filenames);
132 const std::vector<const char*>& image_filenames);
Dimage_space.cc1751 const std::vector<const char*>& image_filenames) { in GetMultiImageBootClassPath() argument
1763 std::string image_filename = image_filenames[i]; in GetMultiImageBootClassPath()
/art/compiler/
Dimage_test.cc167 std::vector<std::string> image_filenames; in Compile() local
170 image_filenames.push_back(image_filename); in Compile()
183 for (const std::string& image_filename : image_filenames) { in Compile()
198 for (const std::string& file : image_filenames) { in Compile()
Dimage_writer.cc171 const std::vector<const char*>& image_filenames, in Write() argument
175 CHECK(!image_filenames.empty()); in Write()
177 CHECK_EQ(image_filenames.size(), 1u); in Write()
180 CHECK_EQ(image_filenames.size(), oat_filenames.size()); in Write()
197 for (size_t i = 0; i < image_filenames.size(); ++i) { in Write()
198 const char* image_filename = image_filenames[i]; in Write()
Dimage_writer.h132 const std::vector<const char*>& image_filenames,
/art/dex2oat/
Ddex2oat.cc1509 std::vector<std::string> image_filenames; in Setup() local
1511 image_filenames.push_back(image_space->GetImageFilename()); in Setup()
1513 std::string image_file_location = android::base::Join(image_filenames, ':'); in Setup()