Searched defs:opened_dex_files (Results 1 - 5 of 5) sorted by relevance
/art/compiler/ |
H A D | image_test.cc | 249 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local 279 opened_dex_files.push_back(std::move(cur_dex_file));
|
H A D | oat_test.cc | 193 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local 202 &opened_dex_files)) { 209 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) { 259 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
|
/art/runtime/ |
H A D | oat_file_manager.cc | 244 std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) { 252 opened_dex_files->push_back(std::move(dex_file)); 593 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local 598 AddDexFilesFromOat(oat_file, &dex_files_unloaded, &opened_dex_files); 241 AddDexFilesFromOat( const OatFile* oat_file, std::vector<const DexFile*>* dex_files, std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) argument
|
/art/dex2oat/ |
H A D | dex2oat.cc | 1553 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local 1568 &opened_dex_files)) { 1571 dex_files_per_oat_file_.push_back(MakeNonOwningPointerVector(opened_dex_files)); 1574 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) { 1579 DCHECK(opened_dex_files.empty()); 2206 // Opens requested class path files and appends them to opened_dex_files. If the dex files have 2209 std::vector<std::unique_ptr<const DexFile>>* opened_dex_files, 2213 DCHECK(opened_dex_files != nullptr) << "OpenClassPathFiles dex out-param is nullptr"; 2228 location.c_str(), location.c_str(), kVerifyChecksum, &error_msg, opened_dex_files)) { 2240 opened_dex_files 2208 OpenClassPathFiles(std::vector<std::string>& class_path_locations, std::vector<std::unique_ptr<const DexFile>>* opened_dex_files, std::vector<std::unique_ptr<OatFile>>* opened_oat_files, InstructionSet isa, std::string& classpath_dir) argument [all...] |
/art/oatdump/ |
H A D | oatdump.cc | 100 std::unique_ptr<const DexFile>> opened_dex_files; member in namespace:art 104 auto it = opened_dex_files.find(oat_dex_file); 105 if (it != opened_dex_files.end()) { 109 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));
|
Completed in 312 milliseconds