Lines Matching refs:ArtMethod
45 class MANAGED ArtMethod : public Object {
52 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, declaring_class_)); in DeclaringClassOffset()
56 return MemberOffset(OFFSETOF_MEMBER(ArtMethod, entry_point_from_compiled_code_)); in EntryPointFromCompiledCodeOffset()
62 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, access_flags_), new_access_flags, false); in SetAccessFlags()
142 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_), new_method_index, false); in SetMethodIndex()
146 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_); in MethodIndexOffset()
150 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, code_item_offset_), false); in GetCodeItemOffset()
154 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, code_item_offset_), new_code_off, false); in SetCodeItemOffset()
163 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_dex_index_), new_idx, false); in SetDexMethodIndex()
171 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_strings_); in DexCacheStringsOffset()
175 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_methods_); in DexCacheResolvedMethodsOffset()
179 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_); in DexCacheResolvedTypesOffset()
183 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, in DexCacheInitializedStaticStorageOffset()
187 ObjectArray<ArtMethod>* GetDexCacheResolvedMethods() const;
188 void SetDexCacheResolvedMethods(ObjectArray<ArtMethod>* new_dex_cache_methods)
200 ArtMethod* FindOverriddenMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
206 …return GetFieldPtr<EntryPointFromInterpreter*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from… in GetEntryPointFromInterpreter()
210 …SetFieldPtr<EntryPointFromInterpreter*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_interp… in SetEntryPointFromInterpreter()
214 …return GetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_compiled_code_… in GetEntryPointFromCompiledCode()
218 …SetFieldPtr<const void*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_compiled_code_), entr… in SetEntryPointFromCompiledCode()
245 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, entry_point_from_compiled_code_); in GetEntryPointFromCompiledCodeOffset()
250 return GetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, mapping_table_), false); in GetMappingTable()
254 SetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, mapping_table_), in SetMappingTable()
264 return GetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, vmap_table_), false); in GetVmapTable()
268 SetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, vmap_table_), vmap_table, false); in SetVmapTable()
276 return GetFieldPtr<uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, gc_map_), false); in GetNativeGcMap()
279 SetFieldPtr<const uint8_t*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, gc_map_), data, false); in SetNativeGcMap()
288 size_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, frame_size_in_bytes_), false); in GetFrameSizeInBytes()
295 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, frame_size_in_bytes_), in SetFrameSizeInBytes()
316 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, native_method_); in NativeMethodOffset()
326 return OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_); in GetMethodIndexOffset()
330 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, core_spill_mask_), false); in GetCoreSpillMask()
335 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, core_spill_mask_), core_spill_mask, false); in SetCoreSpillMask()
339 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, fp_spill_mask_), false); in GetFpSpillMask()
344 SetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, fp_spill_mask_), fp_spill_mask, false); in SetFpSpillMask()
387 ObjectArray<ArtMethod>* dex_cache_resolved_methods_;
447 DISALLOW_IMPLICIT_CONSTRUCTORS(ArtMethod);