Home
last modified time | relevance | path

Searched refs:MethodDexCacheType (Results 1 – 6 of 6) sorted by relevance

/art/test/497-inlining-and-class-loader/
Dclear_dex_cache.cc37 mirror::MethodDexCacheType* methods = dex_cache->GetResolvedMethods(); in Java_Main_cloneResolvedMethods()
72 mirror::MethodDexCacheType* methods = dex_cache->GetResolvedMethods(); in Java_Main_restoreResolvedMethods()
/art/runtime/mirror/
Ddex_cache.h127 using MethodDexCacheType = std::atomic<MethodDexCachePair>; variable
360 MethodDexCacheType* GetResolvedMethods() ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetResolvedMethods()
361 return GetFieldPtr<MethodDexCacheType*>(ResolvedMethodsOffset()); in GetResolvedMethods()
364 void SetResolvedMethods(MethodDexCacheType* resolved_methods) in SetResolvedMethods()
481 MethodDexCacheType* resolved_methods,
Ddex_cache.cc70 MethodDexCacheType* methods = in InitializeNativeFields()
71 AllocArray<MethodDexCacheType>(self, linear_alloc, num_methods); in InitializeNativeFields()
214 MethodDexCacheType* resolved_methods, in SetNativeArrays()
/art/runtime/
Dart_method.h69 using MethodDexCacheType = std::atomic<MethodDexCachePair>; variable
Dclass_linker.h98 using MethodDexCacheType = std::atomic<MethodDexCachePair>; variable
/art/dex2oat/linker/
Dimage_writer.cc1118 mirror::MethodDexCacheType* resolved_methods = dex_cache->GetResolvedMethods(); in ClearDexCache()