• Home
  • Raw
  • Download

Lines Matching refs:DexCache

131 class MANAGED DexCache final : public Object {
184 return sizeof(DexCache); in InstanceSize()
188 ObjPtr<mirror::DexCache> dex_cache,
215 return OFFSET_OF_OBJECT_MEMBER(DexCache, strings_); in StringsOffset()
219 return OFFSET_OF_OBJECT_MEMBER(DexCache, preresolved_strings_); in PreResolvedStringsOffset()
223 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_types_); in ResolvedTypesOffset()
227 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_fields_); in ResolvedFieldsOffset()
231 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_methods_); in ResolvedMethodsOffset()
235 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_method_types_); in ResolvedMethodTypesOffset()
239 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_call_sites_); in ResolvedCallSitesOffset()
243 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_strings_); in NumStringsOffset()
247 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_preresolved_strings_); in NumPreResolvedStringsOffset()
251 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_types_); in NumResolvedTypesOffset()
255 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_fields_); in NumResolvedFieldsOffset()
259 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_methods_); in NumResolvedMethodsOffset()
263 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_method_types_); in NumResolvedMethodTypesOffset()
267 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_call_sites_); in NumResolvedCallSitesOffset()
446 return GetFieldPtr<const DexFile*>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_)); in GetDexFile()
450 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file); in SetDexFile()
588 DISALLOW_IMPLICIT_CONSTRUCTORS(DexCache);