Home
last modified time | relevance | path

Searched refs:dex_locations_ (Results 1 – 2 of 2) sorted by relevance

/art/profman/
Dprofman.cc388 dex_locations_.push_back(std::string(option.substr(strlen("--dex-location=")))); in ParseArgs()
526 if (dex_locations_.empty()) { in OpenApkFilesFromLocations()
534 if (dex_locations_.size() != apks_fd_.size()) { in OpenApkFilesFromLocations()
539 if (dex_locations_.empty()) { in OpenApkFilesFromLocations()
541 dex_locations_ = apk_files_; in OpenApkFilesFromLocations()
542 } else if (dex_locations_.size() != apk_files_.size()) { in OpenApkFilesFromLocations()
547 CHECK(dex_locations_.empty()); in OpenApkFilesFromLocations()
551 for (size_t i = 0; i < dex_locations_.size(); ++i) { in OpenApkFilesFromLocations()
558 dex_locations_[i], in OpenApkFilesFromLocations()
564 LOG(ERROR) << "OpenZip failed for '" << dex_locations_[i] << "' " << error_msg; in OpenApkFilesFromLocations()
[all …]
/art/dex2oat/
Ddex2oat.cc997 if (dex_locations_.empty()) { in ProcessOptions()
998 dex_locations_ = dex_filenames_; in ProcessOptions()
999 } else if (dex_locations_.size() != dex_filenames_.size()) { in ProcessOptions()
1157 ArrayRef<const std::string> locations(dex_locations_); in ExpandOatAndImageFilenames()
1300 AssignIfExists(args, M::DexLocations, &dex_locations_); in ParseArgs()
1819 key_value_store_->Put(OatHeader::kBootClassPathKey, android::base::Join(dex_locations_, ':')); in Setup()
1825 std::string extension_part = ":" + android::base::Join(dex_locations_, ':'); in Setup()
2672 DCHECK_EQ(dex_filenames_.size(), dex_locations_.size()); in PruneNonExistentDexFiles()
2680 dex_locations_[kept] = dex_locations_[i]; in PruneNonExistentDexFiles()
2686 dex_locations_.resize(kept); in PruneNonExistentDexFiles()
[all …]