Home
last modified time | relevance | path

Searched refs:MethodTypeDexCacheType (Results 1 – 8 of 8) sorted by relevance

/art/runtime/utils/
Ddex_cache_arrays_layout-inl.h66 static_assert(alignof(mirror::MethodTypeDexCacheType) == 8, in Alignment()
157 static_assert(alignof(mirror::MethodTypeDexCacheType) == 8, in MethodTypesAlignment()
159 return alignof(mirror::MethodTypeDexCacheType); in MethodTypesAlignment()
/art/runtime/mirror/
Ddex_cache.h137 using MethodTypeDexCacheType = std::atomic<MethodTypeDexCachePair>; variable
214 void FixupResolvedMethodTypes(MethodTypeDexCacheType* dest, const Visitor& visitor)
363 MethodTypeDexCacheType* GetResolvedMethodTypes() in GetResolvedMethodTypes()
365 return GetFieldPtr64<MethodTypeDexCacheType*>(ResolvedMethodTypesOffset()); in GetResolvedMethodTypes()
368 void SetResolvedMethodTypes(MethodTypeDexCacheType* resolved_method_types) in SetResolvedMethodTypes()
448 MethodTypeDexCacheType* resolved_method_types,
Ddex_cache.cc92 MethodTypeDexCacheType* method_types = nullptr; in InitializeDexCache()
102 method_types = reinterpret_cast<MethodTypeDexCacheType*>( in InitializeDexCache()
185 MethodTypeDexCacheType* resolved_method_types, in Init()
Ddex_cache_test.cc168 MethodTypeDexCacheType* method_types_cache = dex_cache->GetResolvedMethodTypes(); in TEST_F()
Ddex_cache-inl.h352 inline void DexCache::FixupResolvedMethodTypes(MethodTypeDexCacheType* dest, in FixupResolvedMethodTypes()
354 MethodTypeDexCacheType* src = GetResolvedMethodTypes(); in FixupResolvedMethodTypes()
/art/patchoat/
Dpatchoat.cc952 mirror::MethodTypeDexCacheType* orig_method_types = orig_dex_cache->GetResolvedMethodTypes(); in PatchDexFileArrays()
953 mirror::MethodTypeDexCacheType* relocated_method_types = in PatchDexFileArrays()
/art/runtime/gc/space/
Dimage_space.cc1347 mirror::MethodTypeDexCacheType* method_types = dex_cache->GetResolvedMethodTypes(); in RelocateInPlace()
1349 mirror::MethodTypeDexCacheType* new_method_types = in RelocateInPlace()
/art/dex2oat/linker/
Dimage_writer.cc2495 mirror::MethodTypeDexCacheType* orig_method_types = orig_dex_cache->GetResolvedMethodTypes(); in FixupDexCache()