Lines Matching refs:mirror

35   mirror::DexCache* dex_cache = soa.Decode<mirror::Class>(cls)->GetDexCache();  in Java_Main_cloneResolvedMethods()
37 mirror::MethodDexCacheType* methods = dex_cache->GetResolvedMethods(); in Java_Main_cloneResolvedMethods()
49 ObjPtr<mirror::Array> decoded_array = soa.Decode<mirror::Array>(array); in Java_Main_cloneResolvedMethods()
51 auto pair = mirror::DexCache::GetNativePairPtrSize(methods, i, kRuntimePointerSize); in Java_Main_cloneResolvedMethods()
55 ObjPtr<mirror::IntArray> int_array = down_cast<mirror::IntArray*>(decoded_array.Ptr()); in Java_Main_cloneResolvedMethods()
59 ObjPtr<mirror::LongArray> long_array = down_cast<mirror::LongArray*>(decoded_array.Ptr()); in Java_Main_cloneResolvedMethods()
70 mirror::DexCache* dex_cache = soa.Decode<mirror::Class>(cls)->GetDexCache(); in Java_Main_restoreResolvedMethods()
72 mirror::MethodDexCacheType* methods = in Java_Main_restoreResolvedMethods()
73 soa.Decode<mirror::Class>(cls)->GetDexCache()->GetResolvedMethods(); in Java_Main_restoreResolvedMethods()
75 ObjPtr<mirror::Array> old = soa.Decode<mirror::Array>(old_cache); in Java_Main_restoreResolvedMethods()
82 ObjPtr<mirror::IntArray> int_array = down_cast<mirror::IntArray*>(old.Ptr()); in Java_Main_restoreResolvedMethods()
86 ObjPtr<mirror::LongArray> long_array = down_cast<mirror::LongArray*>(old.Ptr()); in Java_Main_restoreResolvedMethods()
90 mirror::MethodDexCachePair pair(method, index); in Java_Main_restoreResolvedMethods()
91 mirror::DexCache::SetNativePairPtrSize(methods, i, pair, kRuntimePointerSize); in Java_Main_restoreResolvedMethods()