Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache.h130 using MethodTypeDexCacheType = std::atomic<MethodTypeDexCachePair>; variable
208 void FixupResolvedMethodTypes(MethodTypeDexCacheType* dest, const Visitor& visitor)
381 MethodTypeDexCacheType* GetResolvedMethodTypes() in GetResolvedMethodTypes()
383 return GetFieldPtr64<MethodTypeDexCacheType*, kVerifyFlags>(ResolvedMethodTypesOffset()); in GetResolvedMethodTypes()
386 void SetResolvedMethodTypes(MethodTypeDexCacheType* resolved_method_types) in SetResolvedMethodTypes()
485 MethodTypeDexCacheType* resolved_method_types,
Ddex_cache.cc74 MethodTypeDexCacheType* method_types = in InitializeNativeFields()
75 AllocArray<MethodTypeDexCacheType>(self, linear_alloc, num_method_types); in InitializeNativeFields()
218 MethodTypeDexCacheType* resolved_method_types, in SetNativeArrays()
Ddex_cache_test.cc168 MethodTypeDexCacheType* method_types_cache = dex_cache->GetResolvedMethodTypes(); in TEST_F()
Ddex_cache-inl.h387 inline void DexCache::FixupResolvedMethodTypes(MethodTypeDexCacheType* dest, in FixupResolvedMethodTypes()
389 MethodTypeDexCacheType* src = GetResolvedMethodTypes(); in FixupResolvedMethodTypes()
/art/dex2oat/linker/
Dimage_writer.cc1146 mirror::MethodTypeDexCacheType* resolved_method_types = dex_cache->GetResolvedMethodTypes(); in ClearDexCache()