Home
last modified time | relevance | path

Searched refs:dex_locations (Results 1 – 17 of 17) sorted by relevance

/art/libdexfile/dex/
Dart_dex_file_loader_test.cc67 std::vector<std::string> dex_locations; in TEST_F() local
72 &dex_locations, in TEST_F()
76 ASSERT_EQ(1U, dex_locations.size()); in TEST_F()
78 EXPECT_EQ(java_lang_dex_file_->GetLocation(), dex_locations[0]); in TEST_F()
84 std::vector<std::string> dex_locations; in TEST_F() local
89 &dex_locations, in TEST_F()
95 ASSERT_EQ(2U, dex_locations.size()); in TEST_F()
98 EXPECT_EQ(dexes[0]->GetLocation(), dex_locations[0]); in TEST_F()
102 EXPECT_EQ(dexes[1]->GetLocation(), dex_locations[1]); in TEST_F()
Dart_dex_file_loader.h56 std::vector<std::string>* dex_locations,
Ddex_file_loader.h123 std::vector<std::string>* dex_locations,
Dart_dex_file_loader.cc89 std::vector<std::string>* dex_locations, in GetMultiDexChecksums() argument
138 dex_locations->push_back(GetMultiDexLocation(idx, filename)); in GetMultiDexChecksums()
Ddex_file_loader.cc214 std::vector<std::string>* dex_locations ATTRIBUTE_UNUSED, in GetMultiDexChecksums()
/art/runtime/
Dclass_loader_context.cc426 std::vector<std::string> dex_locations; in OpenDexFiles() local
457 &dex_locations, in OpenDexFiles()
482 dex_locations.push_back(dex->GetLocation()); in OpenDexFiles()
499 DCHECK(dex_locations.size() == dex_checksums.size()); in OpenDexFiles()
500 info->classpath = dex_locations; in OpenDexFiles()
569 std::vector<std::string> dex_locations; in EncodeClassPathContexts() local
571 dex_locations.reserve(class_loader_chain_->original_classpath.size()); in EncodeClassPathContexts()
591 EncodeClassPath(base_dir, dex_locations, checksums, class_loader_chain_->type, out); in EncodeClassPathContexts()
595 dex_locations.push_back(base_location); in EncodeClassPathContexts()
630 const std::vector<std::string>& dex_locations, in EncodeClassPath() argument
[all …]
Ddex2oat_environment_test.h73 std::vector<std::string> dex_locations; in SetUp() local
83 GetResourceOnlySrc1().c_str(), &checksums, &dex_locations, &error_msg)) in SetUp()
Ddexopt_test.cc89 ArrayRef<const std::string> dex_locations(libcore_dex_locations); in GenerateAlternateImage() local
91 bool ok = CompileBootImage(extra_args, filename_prefix, dex_files, dex_locations, &error_msg); in GenerateAlternateImage()
Dclass_loader_context.h323 const std::vector<std::string>& dex_locations,
Dcommon_runtime_test.cc432 ArrayRef<const std::string> dex_locations, in CompileBootImage() argument
445 CHECK_EQ(dex_files.size(), dex_locations.size()); in CompileBootImage()
449 for (const std::string& dex_location : dex_locations) { in CompileBootImage()
Dcommon_runtime_test.h122 ArrayRef<const std::string> dex_locations,
Doat_file_assistant.cc870 ArrayRef<const std::string> dex_locations(&oat_file_assistant_->dex_location_, in GetFile() local
878 dex_locations, in GetFile()
Druntime.cc1209 ArrayRef<const std::string> dex_locations, in OpenBootDexFiles() argument
1216 const char* dex_location = dex_locations[i].c_str(); in OpenBootDexFiles()
/art/runtime/gc/space/
Dimage_space.h254 ArrayRef<const std::string> dex_locations,
Dimage_space.cc1886 std::set<std::string> dex_locations; in CompileExtension() local
1898 auto collect_fn = [&dex_locations](const std::string& dex_location, in CompileExtension()
1900 dex_locations.insert(dex_location); // Just collect locations. in CompileExtension()
1918 if (dex_locations.count(bcp_component_name) == 0u) { in CompileExtension()
3484 std::vector<std::string> dex_locations; in VerifyBootClassPathChecksums() local
3488 &dex_locations, in VerifyBootClassPathChecksums()
3613 ArrayRef<const std::string> dex_locations, in ExpandMultiImageLocations() argument
3616 DCHECK(!dex_locations.empty()); in ExpandMultiImageLocations()
3643 locations.reserve(dex_locations.size()); in ExpandMultiImageLocations()
3651 for (size_t i = start_index; i < dex_locations.size(); ++i) { in ExpandMultiImageLocations()
[all …]
/art/dex2oat/
Ddex2oat_test.cc70 int GenerateOdexForTestWithStatus(const std::vector<std::string>& dex_locations, in GenerateOdexForTestWithStatus() argument
79 for (const std::string& dex_location : dex_locations) {
137 std::vector<std::string> dex_locations; in GenerateOdexForTest() local
147 dex_locations.push_back(dex_location); in GenerateOdexForTest()
150 int status = GenerateOdexForTestWithStatus(dex_locations, in GenerateOdexForTest()
/art/odrefresh/
Dodrefresh.cc419 std::vector<std::string> dex_locations; in GenerateComponents() local
421 if (!loader.GetMultiDexChecksums(path.c_str(), &checksums, &dex_locations, &error_msg)) { in GenerateComponents()