Home | History | Annotate | Download | only in patchoat

Lines Matching refs:orig_dex_cache

901     auto* orig_dex_cache = dex_caches->GetWithoutChecks(i);
902 auto* copy_dex_cache = RelocatedCopyOf(orig_dex_cache);
907 mirror::StringDexCacheType* orig_strings = orig_dex_cache->GetStrings();
913 orig_dex_cache->FixupStrings(RelocatedCopyOf(orig_strings), RelocatedPointerVisitor(this));
915 mirror::TypeDexCacheType* orig_types = orig_dex_cache->GetResolvedTypes();
921 orig_dex_cache->FixupResolvedTypes(RelocatedCopyOf(orig_types),
924 mirror::MethodDexCacheType* orig_methods = orig_dex_cache->GetResolvedMethods();
931 for (size_t j = 0, num = orig_dex_cache->NumResolvedMethods(); j != num; ++j) {
938 mirror::FieldDexCacheType* orig_fields = orig_dex_cache->GetResolvedFields();
945 for (size_t j = 0, num = orig_dex_cache->NumResolvedFields(); j != num; ++j) {
952 mirror::MethodTypeDexCacheType* orig_method_types = orig_dex_cache->GetResolvedMethodTypes();
959 orig_dex_cache->FixupResolvedMethodTypes(RelocatedCopyOf(orig_method_types),
963 GcRoot<mirror::CallSite>* orig_call_sites = orig_dex_cache->GetResolvedCallSites();
969 orig_dex_cache->FixupResolvedCallSites(RelocatedCopyOf(orig_call_sites),