Home
last modified time | relevance | path

Searched refs:dex_caches (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dintern_table.cc163 mirror::ObjectArray<mirror::DexCache>* dex_caches = root->AsObjectArray<mirror::DexCache>(); in AddImageStringsToTable() local
164 for (int32_t i = 0; i < dex_caches->GetLength(); ++i) { in AddImageStringsToTable()
165 mirror::DexCache* dex_cache = dex_caches->Get(i); in AddImageStringsToTable()
195 mirror::ObjectArray<mirror::DexCache>* dex_caches = root->AsObjectArray<mirror::DexCache>(); in LookupStringFromImage() local
197 for (int32_t i = 0; i < dex_caches->GetLength(); ++i) { in LookupStringFromImage()
198 mirror::DexCache* dex_cache = dex_caches->Get(i); in LookupStringFromImage()
Dclass_linker.cc1122 mirror::ObjectArray<mirror::DexCache>* dex_caches = in InitFromImage() local
1136 static_cast<uint32_t>(dex_caches->GetLength())); in InitFromImage()
1137 for (int32_t i = 0; i < dex_caches->GetLength(); i++) { in InitFromImage()
1139 Handle<mirror::DexCache> dex_cache(hs2.NewHandle(dex_caches->Get(i))); in InitFromImage()
1176 for (int32_t i = 0; i < dex_caches->GetLength(); i++) { in InitFromImage()
1177 auto* dex_cache = dex_caches->Get(i); in InitFromImage()
2904 mirror::ObjectArray<mirror::DexCache>* dex_caches = GetImageDexCaches(); in MoveImageClassesToClassTable() local
2906 for (int32_t i = 0; i < dex_caches->GetLength(); i++) { in MoveImageClassesToClassTable()
2907 mirror::DexCache* dex_cache = dex_caches->Get(i); in MoveImageClassesToClassTable()
2940 mirror::ObjectArray<mirror::DexCache>* dex_caches = GetImageDexCaches(); in LookupClassFromImage() local
[all …]
/art/compiler/
Dimage_writer.cc753 Handle<ObjectArray<Object>> dex_caches( in CreateImageRoots() local
756 CHECK(dex_caches.Get() != nullptr) << "Failed to allocate a dex cache array."; in CreateImageRoots()
762 dex_caches->Set<false>(i, class_linker->GetDexCache(i)); in CreateImageRoots()
769 image_roots->Set<false>(ImageHeader::kDexCaches, dex_caches.Get()); in CreateImageRoots()
/art/patchoat/
Dpatchoat.cc476 auto* dex_caches = down_cast<mirror::ObjectArray<mirror::DexCache>*>( in PatchDexFileArrays() local
478 for (size_t i = 0, count = dex_caches->GetLength(); i < count; ++i) { in PatchDexFileArrays()
479 auto* dex_cache = dex_caches->GetWithoutChecks(i); in PatchDexFileArrays()