Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache.h118 using TypeDexCacheType = std::atomic<TypeDexCachePair>; variable
204 void FixupResolvedTypes(TypeDexCacheType* dest, const Visitor& visitor)
350 TypeDexCacheType* GetResolvedTypes() ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetResolvedTypes()
351 return GetFieldPtr<TypeDexCacheType*, kVerifyFlags>(ResolvedTypesOffset()); in GetResolvedTypes()
354 void SetResolvedTypes(TypeDexCacheType* resolved_types) in SetResolvedTypes()
479 TypeDexCacheType* resolved_types,
Ddex_cache.cc68 TypeDexCacheType* types = in InitializeNativeFields()
69 AllocArray<TypeDexCacheType>(self, linear_alloc, num_types); in InitializeNativeFields()
212 TypeDexCacheType* resolved_types, in SetNativeArrays()
Ddex_cache-inl.h180 TypeDexCacheType* slot = &GetResolvedTypes()[slot_idx]; in ClearResolvedType()
375 inline void DexCache::FixupResolvedTypes(TypeDexCacheType* dest, const Visitor& visitor) { in FixupResolvedTypes()
376 TypeDexCacheType* src = GetResolvedTypes(); in FixupResolvedTypes()
/art/dex2oat/linker/
Dimage_writer.cc1132 mirror::TypeDexCacheType* resolved_types = dex_cache->GetResolvedTypes(); in ClearDexCache()