Searched refs:opened_dex_files (Results 1 – 11 of 11) sorted by relevance
33 std::vector<std::vector<std::unique_ptr<const DexFile>>> opened_dex_files; variable47 CHECK_LT(index, opened_dex_files.size()); in Java_Main_setDexDomain()48 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files[index]) { in Java_Main_setDexDomain()61 const size_t index = opened_dex_files.size(); in Java_Main_appendToBootClassLoader()63 opened_dex_files.push_back(std::vector<std::unique_ptr<const DexFile>>()); in Java_Main_appendToBootClassLoader()73 &opened_dex_files[index])) { in Java_Main_appendToBootClassLoader()81 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files[index]) { in Java_Main_appendToBootClassLoader()
177 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);310 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);337 const std::vector<const DexFile*>& opened_dex_files);339 const std::vector<const DexFile*>& opened_dex_files);
244 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; in DoCompile() local273 opened_dex_files.push_back(std::move(cur_dex_file)); in DoCompile()
180 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; in DoWriteElf() local187 &opened_dex_files)) { in DoWriteElf()194 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) { in DoWriteElf()252 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) { in DoWriteElf()
685 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) { in WriteAndOpenDexFiles() argument701 *opened_dex_files = std::move(dex_files); in WriteAndOpenDexFiles()3506 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) { in OpenDexFiles() argument3545 *opened_dex_files = std::move(dex_files); in OpenDexFiles()3596 *opened_dex_files = std::move(dex_files); in OpenDexFiles()3601 const std::vector<const DexFile*>& opened_dex_files) { in WriteTypeLookupTables() argument3612 DCHECK_EQ(opened_dex_files.size(), oat_dex_files_.size()); in WriteTypeLookupTables()3613 for (size_t i = 0, size = opened_dex_files.size(); i != size; ++i) { in WriteTypeLookupTables()3631 const DexFile& dex_file = *opened_dex_files[i]; in WriteTypeLookupTables()3684 const std::vector<const DexFile*>& opened_dex_files) { in WriteDexLayoutSections() argument[all …]
100 for (std::unique_ptr<const DexFile>& dex_file : info->opened_dex_files) { in ~ClassLoaderContext()435 size_t opened_dex_files_index = info->opened_dex_files.size(); in OpenDexFiles()469 &info->opened_dex_files)) { in OpenDexFiles()482 info->opened_dex_files.insert(info->opened_dex_files.end(), in OpenDexFiles()495 &info->opened_dex_files)) { in OpenDexFiles()513 for (size_t k = opened_dex_files_index; k < info->opened_dex_files.size(); k++) { in OpenDexFiles()514 std::unique_ptr<const DexFile>& dex = info->opened_dex_files[k]; in OpenDexFiles()695 for (size_t k = 0; k < info.opened_dex_files.size(); k++) { in EncodeContextInternal()696 const std::unique_ptr<const DexFile>& dex_file = info.opened_dex_files[k]; in EncodeContextInternal()832 info.opened_dex_files); in CreateClassLoaderInternal()[all …]
230 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; member
151 ASSERT_EQ(all_dex_files->size(), info.opened_dex_files.size()); in VerifyOpenDexFiles()155 info.opened_dex_files[cur_open_dex_index++]; in VerifyOpenDexFiles()
351 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; in TEST_F() local367 opened_dex_files.push_back(std::move(df)); in TEST_F()
1707 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; in Setup() local1718 &opened_dex_files)) { in Setup()1721 dex_files_per_oat_file_.push_back(MakeNonOwningPointerVector(opened_dex_files)); in Setup()1723 DCHECK(opened_dex_files.empty()); in Setup()1728 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) { in Setup()
117 static std::map<const OatDexFile*, std::unique_ptr<const DexFile>> opened_dex_files; variable121 auto it = opened_dex_files.find(oat_dex_file); in OpenDexFile()122 if (it != opened_dex_files.end()) { in OpenDexFile()126 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret)); in OpenDexFile()