Searched refs:dex_files_ (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | dex_method_iterator.h | 29 : dex_files_(dex_files), in DexMethodIterator() 36 CHECK_NE(0U, dex_files_.size()); in DexMethodIterator() 45 if (dex_file_index_ == dex_files_.size()) { in HasNext() 129 CHECK_LT(dex_file_index_, dex_files_.size()); in GetDexFileInternal() 130 const DexFile* dex_file = dex_files_[dex_file_index_]; in GetDexFileInternal() 135 const std::vector<const DexFile*>& dex_files_; variable
|
/art/dex2oat/ |
D | dex2oat.cc | 1263 for (const DexFile* dex_file : dex_files_) { in LoadClassProfileDescriptors() 1404 dex_files_ = MakeNonOwningPointerVector(opened_dex_files_); in Setup() 1413 if (!UseSwap(IsBootImage(), dex_files_)) { in Setup() 1453 class_path_files.insert(class_path_files.end(), dex_files_.begin(), dex_files_.end()); in Setup() 1468 for (const auto& dex_file : dex_files_) { in Setup() 1505 &dex_files_ in Compile() 1552 driver_->SetDexFilesForOatFile(dex_files_); in Compile() 1553 driver_->CompileAll(class_loader_, dex_files_, timings_); in Compile() 2145 for (size_t i = 0; i < dex_files_.size(); ++i) { in SaveDexInput() 2146 const DexFile* dex_file = dex_files_[i]; in SaveDexInput() [all …]
|
/art/compiler/ |
D | oat_writer.cc | 278 dex_files_(nullptr), in OatWriter() 477 dex_files_ = &dex_files; in PrepareLayout() 511 for (const DexFile* dex_file : *dex_files_) { in PrepareLayout() 518 CHECK_EQ(dex_files_->size(), oat_dex_files_.size()); in PrepareLayout() 1332 for (const DexFile* dex_file : *dex_files_) { in VisitDexMethods() 2237 DCHECK(dex_files_ != nullptr); in SetMultiOatRelativePatcherAdjustment() 2240 if (image_writer_ != nullptr && !dex_files_->empty()) { in SetMultiOatRelativePatcherAdjustment() 2242 size_t oat_index = image_writer_->GetOatIndexForDexFile(dex_files_->front()); in SetMultiOatRelativePatcherAdjustment()
|
D | oat_writer.h | 303 const std::vector<const DexFile*>* dex_files_; variable
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1871 dex_files_(dex_files), in ParallelCompilationManager() 1894 return dex_files_; in GetDexFiles() 1958 const std::vector<const DexFile*>& dex_files_; member in art::ParallelCompilationManager
|