Home | History | Annotate | Download | only in linker

Lines Matching refs:orig_dex_cache

2444 void ImageWriter::FixupDexCache(mirror::DexCache* orig_dex_cache,
2451 mirror::StringDexCacheType* orig_strings = orig_dex_cache->GetStrings();
2456 orig_dex_cache->FixupStrings(NativeCopyLocation(orig_strings, orig_dex_cache), fixup_visitor);
2458 mirror::TypeDexCacheType* orig_types = orig_dex_cache->GetResolvedTypes();
2463 orig_dex_cache->FixupResolvedTypes(NativeCopyLocation(orig_types, orig_dex_cache),
2466 mirror::MethodDexCacheType* orig_methods = orig_dex_cache->GetResolvedMethods();
2471 mirror::MethodDexCacheType* copy_methods = NativeCopyLocation(orig_methods, orig_dex_cache);
2472 for (size_t i = 0, num = orig_dex_cache->NumResolvedMethods(); i != num; ++i) {
2481 mirror::FieldDexCacheType* orig_fields = orig_dex_cache->GetResolvedFields();
2486 mirror::FieldDexCacheType* copy_fields = NativeCopyLocation(orig_fields, orig_dex_cache);
2487 for (size_t i = 0, num = orig_dex_cache->NumResolvedFields(); i != num; ++i) {
2495 mirror::MethodTypeDexCacheType* orig_method_types = orig_dex_cache->GetResolvedMethodTypes();
2500 orig_dex_cache->FixupResolvedMethodTypes(NativeCopyLocation(orig_method_types, orig_dex_cache),
2503 GcRoot<mirror::CallSite>* orig_call_sites = orig_dex_cache->GetResolvedCallSites();
2508 orig_dex_cache->FixupResolvedCallSites(NativeCopyLocation(orig_call_sites, orig_dex_cache),