Home
last modified time | relevance | path

Searched refs:TypeDexCacheType (Results 1 – 7 of 7) sorted by relevance

/art/runtime/mirror/
Ddex_cache.h116 using TypeDexCacheType = std::atomic<TypeDexCachePair>; variable
201 void FixupResolvedTypes(TypeDexCacheType* dest, const Visitor& visitor)
355 TypeDexCacheType* GetResolvedTypes() ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetResolvedTypes()
356 return GetFieldPtr<TypeDexCacheType*, kVerifyFlags>(ResolvedTypesOffset()); in GetResolvedTypes()
359 void SetResolvedTypes(TypeDexCacheType* resolved_types) in SetResolvedTypes()
484 TypeDexCacheType* resolved_types,
Ddex_cache.cc62 TypeDexCacheType* types = (dex_file->NumTypeIds() == 0u) ? nullptr : in InitializeDexCache()
63 reinterpret_cast<TypeDexCacheType*>(raw_arrays + layout.TypesOffset()); in InitializeDexCache()
200 TypeDexCacheType* resolved_types, in Init()
Ddex_cache-inl.h180 TypeDexCacheType* slot = &GetResolvedTypes()[slot_idx]; in ClearResolvedType()
405 inline void DexCache::FixupResolvedTypes(TypeDexCacheType* dest, const Visitor& visitor) { in FixupResolvedTypes()
406 TypeDexCacheType* src = GetResolvedTypes(); in FixupResolvedTypes()
/art/runtime/utils/
Ddex_cache_arrays_layout-inl.h62 static_assert(alignof(mirror::TypeDexCacheType) == 8, in Alignment()
/art/runtime/gc/space/
Dimage_space.cc531 FixupDexCacheArray<mirror::TypeDexCacheType>(dex_cache, in VisitDexCacheArrays()
/art/runtime/
Dclass_linker.cc1489 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes(); in Update()
1974 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes(); in VerifyAppImage()
2065 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes(); in AddImageSpace()
/art/dex2oat/linker/
Dimage_writer.cc3295 FixupDexCacheArray<mirror::TypeDexCacheType>(orig_dex_cache, in FixupDexCache()