Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache.h118 using TypeDexCacheType = std::atomic<TypeDexCachePair>; variable
203 void FixupResolvedTypes(TypeDexCacheType* dest, const Visitor& visitor)
357 TypeDexCacheType* GetResolvedTypes() ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetResolvedTypes()
358 return GetFieldPtr<TypeDexCacheType*, kVerifyFlags>(ResolvedTypesOffset()); in GetResolvedTypes()
361 void SetResolvedTypes(TypeDexCacheType* resolved_types) in SetResolvedTypes()
490 TypeDexCacheType* resolved_types,
Ddex_cache.cc64 TypeDexCacheType* types = (dex_file->NumTypeIds() == 0u) ? nullptr : in InitializeDexCache()
65 reinterpret_cast<TypeDexCacheType*>(raw_arrays + layout.TypesOffset()); in InitializeDexCache()
245 TypeDexCacheType* resolved_types, in Init()
Ddex_cache-inl.h181 TypeDexCacheType* slot = &GetResolvedTypes()[slot_idx]; in ClearResolvedType()
408 inline void DexCache::FixupResolvedTypes(TypeDexCacheType* dest, const Visitor& visitor) { in FixupResolvedTypes()
409 TypeDexCacheType* src = GetResolvedTypes(); in FixupResolvedTypes()
/art/runtime/utils/
Ddex_cache_arrays_layout-inl.h62 static_assert(alignof(mirror::TypeDexCacheType) == 8, in Alignment()
/art/runtime/
Dclass_linker.cc1693 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes(); in Update()
2061 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes(); in VerifyAppImage()
2145 mirror::TypeDexCacheType* const types = dex_cache->GetResolvedTypes(); in AddImageSpace()
/art/dex2oat/linker/
Dimage_writer.cc3298 FixupDexCacheArray<mirror::TypeDexCacheType>(orig_dex_cache, in FixupDexCache()
/art/runtime/gc/space/
Dimage_space.cc537 FixupDexCacheArray<mirror::TypeDexCacheType>(dex_cache, in VisitDexCacheArrays()