Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache.h131 using MethodTypeDexCacheType = std::atomic<MethodTypeDexCachePair>; variable
353 MethodTypeDexCacheType* GetResolvedMethodTypes() in GetResolvedMethodTypes()
355 return GetFieldPtr64<MethodTypeDexCacheType*, kVerifyFlags>(ResolvedMethodTypesOffset()); in GetResolvedMethodTypes()
358 void SetResolvedMethodTypes(MethodTypeDexCacheType* resolved_method_types) in SetResolvedMethodTypes()
Ddex_cache-inl.h227 MethodTypeDexCacheType* methods = GetResolvedMethodTypes(); in GetResolvedMethodType()
237 MethodTypeDexCacheType* methods = GetResolvedMethodTypes(); in SetResolvedMethodType()
239 methods = AllocArray<MethodTypeDexCacheType, kDexCacheMethodTypeCacheSize>( in SetResolvedMethodType()
256 MethodTypeDexCacheType* slot = &GetResolvedMethodTypes()[slot_idx]; in ClearMethodType()
Ddex_cache_test.cc150 MethodTypeDexCacheType* method_types_cache = dex_cache->GetResolvedMethodTypes(); in TEST_F()