Home
last modified time | relevance | path

Searched refs:NativeArray (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Ddex_cache.h231 template <typename T> class NativeArray {
233 NativeArray() {} in NativeArray() function
507 NativeArray<ArtField>,
529 NativeArray<ArtMethod>,
/art/runtime/
Druntime_image.cc765 void RelocateNativeDexCacheArray(mirror::NativeArray<T>* old_method_array, in RelocateNativeDexCacheArray()
779 mirror::NativeArray<T>* content_array = in RelocateNativeDexCacheArray()
780 reinterpret_cast<mirror::NativeArray<T>*>(data.data() + it->second.second); in RelocateNativeDexCacheArray()
793 mirror::NativeArray<ArtMethod>* old_method_array = cache->GetResolvedMethodsArray(); in RelocateDexCacheArrays()
797 mirror::NativeArray<ArtField>* old_field_array = cache->GetResolvedFieldsArray(); in RelocateDexCacheArrays()
1227 mirror::NativeArray<T>* array) { in CopyNativeDexCacheArray()
1247 mirror::NativeArray<T>* copy = reinterpret_cast<mirror::NativeArray<T>*>(data.data() + offset); in CopyNativeDexCacheArray()
1300 mirror::NativeArray<ArtMethod>* resolved_methods = cache->GetResolvedMethodsArray(); in CopyDexCache()
1308 mirror::NativeArray<ArtField>* resolved_fields = cache->GetResolvedFieldsArray(); in CopyDexCache()
/art/runtime/gc/space/
Dimage_space.cc383 template <typename T> void VisitNativeDexCacheArray(mirror::NativeArray<T>* array) in VisitNativeDexCacheArray()
412 mirror::NativeArray<ArtMethod>* old_resolved_methods = dex_cache->GetResolvedMethodsArray(); in VisitDexCacheArrays()
414 mirror::NativeArray<ArtMethod>* resolved_methods = native_visitor_(old_resolved_methods); in VisitDexCacheArrays()
419 mirror::NativeArray<ArtField>* old_resolved_fields = dex_cache->GetResolvedFieldsArray(); in VisitDexCacheArrays()
421 mirror::NativeArray<ArtField>* resolved_fields = native_visitor_(old_resolved_fields); in VisitDexCacheArrays()