Searched refs:orig_dex_cache (Results 1 - 3 of 3) sorted by relevance

/art/patchoat/
H A Dpatchoat.cc578 auto* orig_dex_cache = dex_caches->GetWithoutChecks(i); local
579 auto* copy_dex_cache = RelocatedCopyOf(orig_dex_cache);
584 GcRoot<mirror::String>* orig_strings = orig_dex_cache->GetStrings();
590 orig_dex_cache->FixupStrings(RelocatedCopyOf(orig_strings), RelocatedPointerVisitor(this));
592 GcRoot<mirror::Class>* orig_types = orig_dex_cache->GetResolvedTypes();
598 orig_dex_cache->FixupResolvedTypes(RelocatedCopyOf(orig_types),
601 ArtMethod** orig_methods = orig_dex_cache->GetResolvedMethods();
608 for (size_t j = 0, num = orig_dex_cache->NumResolvedMethods(); j != num; ++j) {
614 ArtField** orig_fields = orig_dex_cache->GetResolvedFields();
621 for (size_t j = 0, num = orig_dex_cache
[all...]
/art/compiler/
H A Dimage_writer.cc1969 void ImageWriter::FixupDexCache(mirror::DexCache* orig_dex_cache, argument
1975 GcRoot<mirror::String>* orig_strings = orig_dex_cache->GetStrings();
1980 orig_dex_cache->FixupStrings(NativeCopyLocation(orig_strings, orig_dex_cache),
1983 GcRoot<mirror::Class>* orig_types = orig_dex_cache->GetResolvedTypes();
1988 orig_dex_cache->FixupResolvedTypes(NativeCopyLocation(orig_types, orig_dex_cache),
1991 ArtMethod** orig_methods = orig_dex_cache->GetResolvedMethods();
1996 ArtMethod** copy_methods = NativeCopyLocation(orig_methods, orig_dex_cache);
1997 for (size_t i = 0, num = orig_dex_cache
[all...]
H A Dimage_writer.h410 void FixupDexCache(mirror::DexCache* orig_dex_cache, mirror::DexCache* copy_dex_cache)

Completed in 60 milliseconds