Lines Matching refs:DexCache

133 class MANAGED DexCache final : public Object {
186 return sizeof(DexCache); in InstanceSize()
190 ObjPtr<mirror::DexCache> dex_cache,
217 return OFFSET_OF_OBJECT_MEMBER(DexCache, strings_); in StringsOffset()
221 return OFFSET_OF_OBJECT_MEMBER(DexCache, preresolved_strings_); in PreResolvedStringsOffset()
225 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_types_); in ResolvedTypesOffset()
229 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_fields_); in ResolvedFieldsOffset()
233 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_methods_); in ResolvedMethodsOffset()
237 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_method_types_); in ResolvedMethodTypesOffset()
241 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_call_sites_); in ResolvedCallSitesOffset()
245 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_strings_); in NumStringsOffset()
249 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_preresolved_strings_); in NumPreResolvedStringsOffset()
253 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_types_); in NumResolvedTypesOffset()
257 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_fields_); in NumResolvedFieldsOffset()
261 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_methods_); in NumResolvedMethodsOffset()
265 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_method_types_); in NumResolvedMethodTypesOffset()
269 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_call_sites_); in NumResolvedCallSitesOffset()
448 return GetFieldPtr<const DexFile*>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_)); in GetDexFile()
452 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file); in SetDexFile()
593 DISALLOW_IMPLICIT_CONSTRUCTORS(DexCache);