Home
last modified time | relevance | path

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

/art/profman/
Dprofman.cc425 dex_locations_.push_back(std::string(option.substr(strlen("--dex-location=")))); in ParseArgs()
581 if (dex_locations_.empty()) { in OpenApkFilesFromLocations()
589 if (dex_locations_.size() != apks_fd_.size()) { in OpenApkFilesFromLocations()
594 if (dex_locations_.empty()) { in OpenApkFilesFromLocations()
596 dex_locations_ = apk_files_; in OpenApkFilesFromLocations()
597 } else if (dex_locations_.size() != apk_files_.size()) { in OpenApkFilesFromLocations()
602 CHECK(dex_locations_.empty()); in OpenApkFilesFromLocations()
606 for (size_t i = 0; i < dex_locations_.size(); ++i) { in OpenApkFilesFromLocations()
613 dex_locations_[i], in OpenApkFilesFromLocations()
619 LOG(ERROR) << "OpenZip failed for '" << dex_locations_[i] << "' " << error_msg; in OpenApkFilesFromLocations()
[all …]
/art/dex2oat/
Ddex2oat.cc737 if (dex_locations_.empty()) { in ProcessOptions()
738 dex_locations_ = dex_filenames_; in ProcessOptions()
739 } else if (dex_locations_.size() != dex_filenames_.size()) { in ProcessOptions()
897 ArrayRef<const std::string> locations(dex_locations_); in ExpandOatAndImageFilenames()
1037 AssignIfExists(args, M::DexLocations, &dex_locations_); in ParseArgs()
1583 key_value_store_->Put(OatHeader::kBootClassPathKey, android::base::Join(dex_locations_, ':')); in Setup()
1589 std::string extension_part = ":" + android::base::Join(dex_locations_, ':'); in Setup()
2572 DCHECK_EQ(dex_filenames_.size(), dex_locations_.size()); in PruneNonExistentDexFiles()
2580 dex_locations_[kept] = dex_locations_[i]; in PruneNonExistentDexFiles()
2586 dex_locations_.resize(kept); in PruneNonExistentDexFiles()
[all …]