Searched refs:dex_locations (Results 1 – 10 of 10) sorted by relevance
/art/runtime/ |
D | dexopt_test.cc | 86 ArrayRef<const std::string> dex_locations(libcore_dex_locations); in GenerateAlternateImage() local 88 bool ok = CompileBootImage(extra_args, filename_prefix, dex_files, dex_locations, &error_msg); in GenerateAlternateImage()
|
D | class_loader_context.cc | 585 std::vector<std::string> dex_locations; in EncodeClassPathContexts() local 587 dex_locations.reserve(class_loader_chain_->original_classpath.size()); in EncodeClassPathContexts() 607 EncodeClassPath(base_dir, dex_locations, checksums, class_loader_chain_->type, out); in EncodeClassPathContexts() 611 dex_locations.push_back(base_location); in EncodeClassPathContexts() 649 const std::vector<std::string>& dex_locations, in EncodeClassPath() argument 653 CHECK(checksums.empty() || dex_locations.size() == checksums.size()); in EncodeClassPath() 656 const size_t len = dex_locations.size(); in EncodeClassPath() 658 std::string location = dex_locations[k]; in EncodeClassPath()
|
D | class_loader_context.h | 316 const std::vector<std::string>& dex_locations,
|
D | common_runtime_test.cc | 428 ArrayRef<const std::string> dex_locations, in CompileBootImage() argument 441 CHECK_EQ(dex_files.size(), dex_locations.size()); in CompileBootImage() 445 for (const std::string& dex_location : dex_locations) { in CompileBootImage()
|
D | common_runtime_test.h | 122 ArrayRef<const std::string> dex_locations,
|
D | oat_file_assistant.cc | 819 ArrayRef<const std::string> dex_locations(&oat_file_assistant_->dex_location_, in GetFile() local 827 dex_locations, in GetFile()
|
D | runtime.cc | 1120 ArrayRef<const std::string> dex_locations, in OpenBootDexFiles() argument 1127 const char* dex_location = dex_locations[i].c_str(); in OpenBootDexFiles()
|
/art/runtime/gc/space/ |
D | image_space.h | 255 ArrayRef<const std::string> dex_locations,
|
D | image_space.cc | 2134 std::set<std::string> dex_locations; in CompileExtension() local 2146 auto collect_fn = [&dex_locations](const std::string& dex_location, in CompileExtension() 2148 dex_locations.insert(dex_location); // Just collect locations. in CompileExtension() 2166 if (dex_locations.count(bcp_component_name) == 0u) { in CompileExtension() 4101 ArrayRef<const std::string> dex_locations, in ExpandMultiImageLocations() argument 4104 DCHECK(!dex_locations.empty()); in ExpandMultiImageLocations() 4131 locations.reserve(dex_locations.size()); in ExpandMultiImageLocations() 4139 for (size_t i = start_index; i < dex_locations.size(); ++i) { in ExpandMultiImageLocations() 4142 std::string name = dex_locations[i]; in ExpandMultiImageLocations()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 73 int GenerateOdexForTestWithStatus(const std::vector<std::string>& dex_locations, in GenerateOdexForTestWithStatus() argument 82 for (const std::string& dex_location : dex_locations) { 140 std::vector<std::string> dex_locations; in GenerateOdexForTest() local 150 dex_locations.push_back(dex_location); in GenerateOdexForTest() 153 int status = GenerateOdexForTestWithStatus(dex_locations, in GenerateOdexForTest()
|