Lines Matching refs:ArtMethod
30 inline Class* ArtMethod::GetDeclaringClass() const { in GetDeclaringClass()
31 …Class* result = GetFieldObject<Class*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, declaring_class_), false… in GetDeclaringClass()
37 inline void ArtMethod::SetDeclaringClass(Class *new_declaring_class) { in SetDeclaringClass()
38 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(ArtMethod, declaring_class_), new_declaring_class, false); in SetDeclaringClass()
41 inline uint32_t ArtMethod::GetAccessFlags() const { in GetAccessFlags()
43 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, access_flags_), false); in GetAccessFlags()
46 inline uint16_t ArtMethod::GetMethodIndex() const { in GetMethodIndex()
48 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_), false); in GetMethodIndex()
51 inline uint32_t ArtMethod::GetDexMethodIndex() const { in GetDexMethodIndex()
58 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_dex_index_), false); in GetDexMethodIndex()
61 inline ObjectArray<String>* ArtMethod::GetDexCacheStrings() const { in GetDexCacheStrings()
63 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_strings_), false); in GetDexCacheStrings()
66 inline ObjectArray<ArtMethod>* ArtMethod::GetDexCacheResolvedMethods() const { in GetDexCacheResolvedMethods()
67 return GetFieldObject<ObjectArray<ArtMethod>*>( in GetDexCacheResolvedMethods()
68 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_methods_), false); in GetDexCacheResolvedMethods()
71 inline ObjectArray<Class>* ArtMethod::GetDexCacheResolvedTypes() const { in GetDexCacheResolvedTypes()
73 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_), false); in GetDexCacheResolvedTypes()
76 inline ObjectArray<StaticStorageBase>* ArtMethod::GetDexCacheInitializedStaticStorage() const { in GetDexCacheInitializedStaticStorage()
78 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_initialized_static_storage_), in GetDexCacheInitializedStaticStorage()
82 inline uint32_t ArtMethod::GetCodeSize() const { in GetCodeSize()
93 inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) { in CheckIncompatibleClassChange()
115 inline void ArtMethod::AssertPcIsWithinCode(uintptr_t pc) const { in AssertPcIsWithinCode()
140 inline uint32_t ArtMethod::GetOatCodeOffset() const { in GetOatCodeOffset()
145 inline void ArtMethod::SetOatCodeOffset(uint32_t code_offset) { in SetOatCodeOffset()
150 inline uint32_t ArtMethod::GetOatMappingTableOffset() const { in GetOatMappingTableOffset()
155 inline void ArtMethod::SetOatMappingTableOffset(uint32_t mapping_table_offset) { in SetOatMappingTableOffset()
160 inline uint32_t ArtMethod::GetOatVmapTableOffset() const { in GetOatVmapTableOffset()
165 inline void ArtMethod::SetOatVmapTableOffset(uint32_t vmap_table_offset) { in SetOatVmapTableOffset()
170 inline void ArtMethod::SetOatNativeGcMapOffset(uint32_t gc_map_offset) { in SetOatNativeGcMapOffset()
175 inline uint32_t ArtMethod::GetOatNativeGcMapOffset() const { in GetOatNativeGcMapOffset()
180 inline bool ArtMethod::IsRuntimeMethod() const { in IsRuntimeMethod()
184 inline bool ArtMethod::IsCalleeSaveMethod() const { in IsCalleeSaveMethod()
199 inline bool ArtMethod::IsResolutionMethod() const { in IsResolutionMethod()